summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/stage/factory.rb
blob: 689a5dd45bc3911e9d323c0fde6c02ec60a4afce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Gitlab
  module Ci
    module Status
      module Stage
        class Factory < Status::Factory
          def self.common_helpers
            Status::Stage::Common
          end
        end
      end
    end
  end
end