gitlab-org--gitlab-foss/lib/gitlab/ci/status/build/action.rb

27 lines
503 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module Ci
module Status
module Build
2018-01-16 06:22:09 -05:00
##
# Extended status for playable manual actions.
#
class Action < Status::Extended
def label
if has_action?
@status.label
else
"#{@status.label} (not allowed)"
end
end
def self.matches?(build, user)
2018-01-16 06:22:09 -05:00
build.playable?
end
end
end
end
end
end