summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/play.rb
blob: e3066d40a376cb5cb937b75c4297c1d946d6945d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module Gitlab
  module Ci
    module Status
      module Build
        class Play < SimpleDelegator
          include Status::Extended

          def text
            'play'
          end

          def label
            'play'
          end

          def has_action?
            can?(user, :update_build, subject)
          end

          def action_title
            'Play'
          end

          def action_icon
            'play'
          end

          def action_class
            'ci-play-icon'
          end

          def action_path
            play_namespace_project_build_path(subject.project.namespace,
                                              subject.project,
                                              subject)
          end

          def action_method
            :post
          end

          def self.matches?(build, user)
            build.playable? && !build.stops_environment?
          end
        end
      end
    end
  end
end