BigW Consortium Gitlab

factory.rb 363 Bytes
Newer Older
1 2 3 4
module Gitlab
  module Ci
    module Status
      module Pipeline
5
        class Factory < Status::Factory
6
          def self.extended_statuses
7 8
            [[Status::SuccessWarning,
              Status::Pipeline::Blocked]]
9 10
          end

11 12
          def self.common_helpers
            Status::Pipeline::Common
13 14 15 16 17 18
          end
        end
      end
    end
  end
end