debian-mirror-gitlab/lib/gitlab/ci/status/build/play.rb

38 lines
704 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
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
2017-09-10 17:25:29 +05:30
play_project_job_path(subject.project, subject)
2017-08-17 22:00:37 +05:30
end
def action_method
:post
end
def self.matches?(build, user)
build.playable? && !build.stops_environment?
end
end
end
end
end
end