diff options
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | app/views/projects/show.html.haml | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +v7.13.0 + - Fix: No runner notification can see managers only + v7.12.1 - Runner without tag should pick builds without tag only diff --git a/app/views/projects/show.html.haml b/app/views/projects/show.html.haml index 75dc345..c5c2e3f 100644 --- a/app/views/projects/show.html.haml +++ b/app/views/projects/show.html.haml @@ -1,6 +1,6 @@ = render 'shared/guide' unless @project.setup_finished? -- unless @project.any_runners? +- if current_user && current_user.can_manage_project?(@project.gitlab_id) && !@project.any_runners? .alert.alert-danger Builds for this project wont be served unless you configure runners on = link_to "Runners page", project_runners_path(@project) |