Welcome to mirror list, hosted at ThFree Co, Russian Federation.

factory.rb « pipeline « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0adf83fa1977448ad3e26ef04f6cf45f86a38162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Gitlab
  module Ci
    module Status
      module Pipeline
        class Factory < Status::Factory
          def self.extended_statuses
            [[Status::SuccessWarning,
              Status::Pipeline::Delayed,
              Status::Pipeline::Blocked]]
          end

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