summaryrefslogtreecommitdiff
path: root/lib/api/helpers.rb
diff options
context:
space:
mode:
authorValeriy Sizov <vsv2711@gmail.com>2012-10-02 12:46:01 +0300
committerValeriy Sizov <vsv2711@gmail.com>2012-10-02 12:46:01 +0300
commit825081174aa70b5cbfe5947ebf268f14702b6211 (patch)
tree7401776c47354084c51d8c234f43d06f194591c7 /lib/api/helpers.rb
parent0187ae4e8689f0fc2fd399b65973792395534853 (diff)
downloadgitlab-ce-825081174aa70b5cbfe5947ebf268f14702b6211.tar.gz
#1585 Api for user creation: base implementation
Diffstat (limited to 'lib/api/helpers.rb')
-rw-r--r--lib/api/helpers.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb
index 14390545bd5..da1d2bd02f9 100644
--- a/lib/api/helpers.rb
+++ b/lib/api/helpers.rb
@@ -22,6 +22,10 @@ module Gitlab
unauthorized! unless current_user
end
+ def authenticated_as_admin!
+ forbidden! unless current_user.is_admin?
+ end
+
def authorize! action, subject
unless abilities.allowed?(current_user, action, subject)
forbidden!