gitlab-org--gitlab-foss/lib/gitlab/ci/status/build/cancelable.rb

40 lines
722 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module Ci
module Status
module Build
class Cancelable < Status::Extended
def has_action?
can?(user, :update_build, subject)
end
def action_icon
2017-10-09 08:16:21 -04:00
'cancel'
end
def action_path
cancel_project_job_path(subject.project, subject)
end
def action_method
:post
end
2016-12-08 12:18:30 -05:00
def action_title
'Cancel'
end
def action_button_title
_('Cancel this job')
end
def self.matches?(build, user)
build.cancelable?
end
end
end
end
end
end