summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/cancelable.rb
blob: bff0464ef0c0cef637263af8c2bb689ca3f00128 (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
module Gitlab
  module Ci
    module Status
      module Status
        class Cancelable < SimpleDelegator
          extend Status::Extended

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

          def action_icon
            'remove'
          end

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

          def action_method
            :post
          end

          def self.matches?(build)
            build.cancelable?
          end
        end
      end
    end
  end
end