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

pipeline_presenter.rb « ci « presenters « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a542bdd82951a4405ea493f1329dff8a05472c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
module Ci
  class PipelinePresenter < Gitlab::View::Presenter::Delegated
    presents :pipeline

    def status_title
      if auto_canceled?
        "Pipeline is redundant and is auto-canceled by Pipeline ##{auto_canceled_by_id}"
      end
    end
  end
end