Reduce amount of user info provided with internal api

This commit is contained in:
Dmitriy Zaporozhets 2013-03-11 14:35:00 +02:00
parent a29c883b5b
commit 11b57d979c
2 changed files with 5 additions and 1 deletions

View file

@ -5,6 +5,10 @@ module Gitlab
:dark_scheme, :theme_id, :state, :created_at, :extern_uid, :provider
end
class UserSafe < Grape::Entity
expose :name
end
class UserBasic < Grape::Entity
expose :id, :username, :email, :name, :state, :created_at
end