40 lines
835 B
Ruby
40 lines
835 B
Ruby
|
module Gitlab
|
||
|
module Ci
|
||
|
module Status
|
||
|
module Build
|
||
|
class Play < Status::Extended
|
||
|
def label
|
||
|
'manual play action'
|
||
|
end
|
||
|
|
||
|
def has_action?
|
||
|
can?(user, :update_build, subject)
|
||
|
end
|
||
|
|
||
|
def action_icon
|
||
|
'icon_action_play'
|
||
|
end
|
||
|
|
||
|
def action_title
|
||
|
'Play'
|
||
|
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
|