Skip to content
Snippets Groups Projects
Commit 28e7d1a8 authored by Alex Denisov's avatar Alex Denisov
Browse files

Abilities added to /user and /sign_in requests

parent 6956f1f6
No related branches found
No related tags found
1 merge request!3251Abilities added to /user and /sign_in requests
Loading
Loading
@@ -15,6 +15,10 @@ module Gitlab
 
class UserLogin < UserBasic
expose :private_token
expose :is_admin?, as: :is_admin
expose :can_create_group?, as: :can_create_group
expose :can_create_project?, as: :can_create_project
expose :can_create_team?, as: :can_create_team
end
 
class Hook < Grape::Entity
Loading
Loading
@@ -31,7 +35,7 @@ module Gitlab
end
 
class ProjectMember < UserBasic
expose :project_access, :as => :access_level do |user, options|
expose :project_access, as: :access_level do |user, options|
options[:project].users_projects.find_by_user_id(user.id).project_access
end
end
Loading
Loading
Loading
Loading
@@ -191,7 +191,7 @@ module Gitlab
unless team_member.nil?
team_member.destroy
else
{:message => "Access revoked", :id => params[:user_id].to_i}
{message: "Access revoked", id: params[:user_id].to_i}
end
end
 
Loading
Loading
@@ -322,7 +322,7 @@ module Gitlab
protected = user_project.protected_branches.find_by_name(@branch.name)
 
unless protected
user_project.protected_branches.create(:name => @branch.name)
user_project.protected_branches.create(name: @branch.name)
end
 
present @branch, with: Entities::RepoObject, project: user_project
Loading
Loading
Loading
Loading
@@ -124,7 +124,7 @@ module Gitlab
# Example Request:
# GET /user
get do
present @current_user, with: Entities::User
present @current_user, with: Entities::UserLogin
end
 
# Get currently authenticated user's keys
Loading
Loading
Loading
Loading
@@ -13,6 +13,10 @@ describe Gitlab::API do
 
json_response['email'].should == user.email
json_response['private_token'].should == user.private_token
json_response['is_admin'].should == user.is_admin?
json_response['can_create_team'].should == user.can_create_team?
json_response['can_create_project'].should == user.can_create_project?
json_response['can_create_group'].should == user.can_create_group?
end
end
 
Loading
Loading
Loading
Loading
@@ -214,6 +214,10 @@ describe Gitlab::API do
get api("/user", user)
response.status.should == 200
json_response['email'].should == user.email
json_response['is_admin'].should == user.is_admin?
json_response['can_create_team'].should == user.can_create_team?
json_response['can_create_project'].should == user.can_create_project?
json_response['can_create_group'].should == user.can_create_group?
end
 
it "should return 401 error if user is unauthenticated" do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment