summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/stage/common.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/status/stage/common.rb')
-rw-r--r--lib/gitlab/ci/status/stage/common.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/gitlab/ci/status/stage/common.rb b/lib/gitlab/ci/status/stage/common.rb
new file mode 100644
index 00000000000..7852f492e1d
--- /dev/null
+++ b/lib/gitlab/ci/status/stage/common.rb
@@ -0,0 +1,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