summaryrefslogtreecommitdiff
path: root/app/presenters/ci/pipeline_presenter.rb
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