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
|