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

API docs updated

parent 28e7d1a8
No related branches found
No related tags found
1 merge request!3251Abilities added to /user and /sign_in requests
Loading
Loading
@@ -17,7 +17,17 @@ Parameters:
"email": "john@example.com",
"name": "John Smith",
"private_token": "dd34asd13as",
"blocked": false,
"created_at": "2012-05-23T08:00:58Z",
"blocked": true
"bio": null,
"skype": "",
"linkedin": "",
"twitter": "",
"dark_scheme": false,
"theme_id": 1
"is_admin": false,
"can_create_group" : true,
"can_create_team" : true,
"can_create_project" : true
}
```
Loading
Loading
@@ -154,6 +154,7 @@ GET /user
"username": "john_smith",
"email": "john@example.com",
"name": "John Smith",
"private_token": "dd34asd13as",
"blocked": false,
"created_at": "2012-05-23T08:00:58Z",
"bio": null,
Loading
Loading
@@ -162,6 +163,10 @@ GET /user
"twitter": "",
"dark_scheme": false,
"theme_id": 1
"is_admin": false,
"can_create_group" : true,
"can_create_team" : true,
"can_create_project" : true
}
```
 
Loading
Loading
Loading
Loading
@@ -13,7 +13,7 @@ module Gitlab
expose :id, :username, :email, :name, :state, :created_at
end
 
class UserLogin < UserBasic
class UserLogin < User
expose :private_token
expose :is_admin?, as: :is_admin
expose :can_create_group?, as: :can_create_group
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