5186d6faa1
Enables frozen string for all remaining files in lib/gitlab/ci. Partially addresses #47424.
39 lines
722 B
Ruby
39 lines
722 B
Ruby
# 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
|
|
'cancel'
|
|
end
|
|
|
|
def action_path
|
|
cancel_project_job_path(subject.project, subject)
|
|
end
|
|
|
|
def action_method
|
|
:post
|
|
end
|
|
|
|
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
|