summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/stage/factory.rb
blob: c6522d5ada154485fab858027db84ece8d453a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Gitlab
  module Ci
    module Status
      module Stage
        class Factory < Status::Factory
          private

          def core_status
            super.extend(Status::Stage::Common)
          end
        end
      end
    end
  end
end