Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/session.md')
-rw-r--r--doc/api/session.md39
1 files changed, 0 insertions, 39 deletions
diff --git a/doc/api/session.md b/doc/api/session.md
deleted file mode 100644
index 47c1c8a7a49..00000000000
--- a/doc/api/session.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# Session
-
-Login to get private token
-
-```
-POST /session
-```
-
-Parameters:
-
-- `login` (required) - The login of user
-- `email` (required if login missing) - The email of user
-- `password` (required) - Valid password
-
-**You can login with both GitLab and LDAP credentials now**
-
-
-```json
-{
- "id": 1,
- "username": "john_smith",
- "email": "john@example.com",
- "name": "John Smith",
- "private_token": "dd34asd13as",
- "blocked": false,
- "created_at": "2012-05-23T08:00:58Z",
- "bio": null,
- "skype": "",
- "linkedin": "",
- "twitter": "",
- "website_url": "",
- "dark_scheme": false,
- "theme_id": 1,
- "is_admin": false,
- "can_create_group": true,
- "can_create_team": true,
- "can_create_project": true
-}
-```