common.rb 475 Bytes
Newer Older
1 2 3
module Gitlab
  module Ci
    module Status
4 5 6 7 8 9 10
      module Pipeline
        module Common
          def has_details?
            true
          end

          def details_path
11 12 13
            namespace_project_pipeline_path(@subject.project.namespace,
                                            @subject.project,
                                            @subject)
14 15 16 17 18 19 20 21 22 23
          end

          def has_action?
            false
          end
        end
      end
    end
  end
end