debian-mirror-gitlab/lib/gitlab/ci/status/build/stop.rb
2018-12-13 13:39:08 +05:30

43 lines
810 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Status
module Build
class Stop < Status::Extended
def label
'manual stop action'
end
def has_action?
can?(user, :update_build, subject)
end
def action_icon
'stop'
end
def action_title
'Stop'
end
def action_button_title
_('Stop this environment')
end
def action_path
play_project_job_path(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