summaryrefslogtreecommitdiff
path: root/lib/api
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api')
-rw-r--r--lib/api/entities.rb8
-rw-r--r--lib/api/helpers.rb11
2 files changed, 19 insertions, 0 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb
new file mode 100644
index 00000000000..3548e8cc5a9
--- /dev/null
+++ b/lib/api/entities.rb
@@ -0,0 +1,8 @@
+module Gitlab
+ module Entities
+ class User < Grape::Entity
+ expose :id, :email, :name, :bio, :skype, :linkedin, :twitter,
+ :dark_scheme, :theme_id, :blocked, :created_at
+ end
+ end
+end
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb
new file mode 100644
index 00000000000..cd2e39bf3a7
--- /dev/null
+++ b/lib/api/helpers.rb
@@ -0,0 +1,11 @@
+module Gitlab
+ module APIHelpers
+ def current_user
+ @current_user ||= User.find_by_authentication_token(params[:private_token])
+ end
+
+ def authenticate!
+ error!('401 Unauthorized', 401) unless current_user
+ end
+ end
+end