2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Status
|
|
|
|
module Bridge
|
|
|
|
class Factory < Status::Factory
|
2020-04-22 19:07:51 +05:30
|
|
|
def self.extended_statuses
|
2021-01-03 14:25:43 +05:30
|
|
|
[[Status::Bridge::Failed],
|
|
|
|
[Status::Bridge::Manual],
|
|
|
|
[Status::Bridge::Play],
|
|
|
|
[Status::Bridge::Action]]
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def self.common_helpers
|
|
|
|
Status::Bridge::Common
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|