summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/stage/factory.rb
blob: 58f4642510b0eadda9f33f5d9ded5ffb44da3f2f (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 Stage
        class Factory < Status::Factory
          def self.extended_statuses
            [Status::SuccessWarning]
          end

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