summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/bridge/factory.rb
blob: 5d397dba0de8d7d4027e6d8a8b6e601b3a17be17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Bridge
        class Factory < Status::Factory
          def self.extended_statuses
            [Status::Bridge::Failed]
          end

          def self.common_helpers
            Status::Bridge::Common
          end
        end
      end
    end
  end
end