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