Reduce amount of user info provided with internal api

5-0-stable
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

View File

@ -44,7 +44,7 @@ module Gitlab
#
get "/discover" do
key = Key.find(params[:key_id])
present key.user, with: Entities::User
present key.user, with: Entities::UserSafe
end
get "/check" do