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

common.rb « stage « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7852f492e1d0738b8f2e33af2e7412dd0c2e8356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module Gitlab
  module Ci
    module Status
      module Stage
        module Common
          def has_details?
            can?(user, :read_pipeline, subject.pipeline)
          end

          def details_path
            namespace_project_pipeline_path(subject.project.namespace,
                                            subject.project,
                                            subject.pipeline,
                                            anchor: subject.name)
          end

          def has_action?
            false
          end
        end
      end
    end
  end
end