diff options
author | evuez <helloevuez@gmail.com> | 2016-02-24 13:14:37 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-03-04 11:59:43 +0100 |
commit | b0d24ab1b52a78bf855a70886113b79707036029 (patch) | |
tree | 9361c8f927054ce3af525187d889aa731bcf71b2 /doc | |
parent | f8c4dc97230c520df077c1274fd8d88680da5242 (diff) | |
download | gitlab-ce-b0d24ab1b52a78bf855a70886113b79707036029.tar.gz |
Add fields to GET /users/* API endpoints for adminsevuez/gitlab-ce-add-info-user-api
Added fields are last_sign_in_at and confirmed_at.
They are available for GET /users/ and GET /users/:id for admins.
Closes #840
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/users.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/users.md b/doc/api/users.md index b7fc903825e..82c57a2fd43 100644 --- a/doc/api/users.md +++ b/doc/api/users.md @@ -151,6 +151,8 @@ Parameters: "name": "John Smith", "state": "active", "created_at": "2012-05-23T08:00:58Z", + "confirmed_at": "2012-05-23T08:00:58Z", + "last_sign_in_at": "2015-03-23T08:00:58Z", "bio": null, "skype": "", "linkedin": "", |