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

27 lines
503 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Gitlab
module Ci
module Status
module Build
2018-03-17 18:26:18 +05:30
##
# Extended status for playable manual actions.
#
2017-08-17 22:00:37 +05:30
class Action < Status::Extended
def label
if has_action?
@status.label
else
"#{@status.label} (not allowed)"
end
end
def self.matches?(build, user)
2018-03-17 18:26:18 +05:30
build.playable?
2017-08-17 22:00:37 +05:30
end
end
end
end
end
end