summaryrefslogtreecommitdiff
path: root/lib/api
diff options
context:
space:
mode:
authorAlexis Reigel <mail@koffeinfrei.org>2017-09-25 15:28:49 +0200
committerAlexis Reigel <alexis.reigel.ext@siemens.com>2018-04-23 09:21:43 +0200
commitd0842d20758e2f33d44b41a250d361853abe47f4 (patch)
tree7cb89ea266cc5126e696eee3437e8147031d7dcd /lib/api
parent4b1b2f3b104df455d5d3265adca92dd09e079ee9 (diff)
downloadgitlab-ce-d0842d20758e2f33d44b41a250d361853abe47f4.tar.gz
disallow group runners to become project runners
Diffstat (limited to 'lib/api')
-rw-r--r--lib/api/runners.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/runners.rb b/lib/api/runners.rb
index ef4ec3f4800..84d33879c38 100644
--- a/lib/api/runners.rb
+++ b/lib/api/runners.rb
@@ -206,6 +206,7 @@ module API
def authenticate_enable_runner!(runner)
forbidden!("Runner is shared") if runner.is_shared?
forbidden!("Runner is locked") if runner.locked?
+ forbidden!("Runner is a group runner") if runner.group?
return if current_user.admin?
forbidden!("No access granted") unless user_can_access_runner?(runner)