debian-mirror-gitlab/lib/gitlab/ci/status/pipeline/blocked.rb
2017-08-17 22:00:37 +05:30

21 lines
366 B
Ruby

module Gitlab
module Ci
module Status
module Pipeline
class Blocked < Status::Extended
def text
'blocked'
end
def label
'waiting for manual action'
end
def self.matches?(pipeline, user)
pipeline.blocked?
end
end
end
end
end
end