diff options
| author | Sebastian Ziebell <sebastian.ziebell@asquera.de> | 2013-03-07 14:51:56 +0100 |
|---|---|---|
| committer | Sebastian Ziebell <sebastian.ziebell@asquera.de> | 2013-03-07 14:51:56 +0100 |
| commit | 3374027e3a4e4eb040e59294a9ced9d7886a71e2 (patch) | |
| tree | 4587984396a32047a6337e7810a39633ba683545 /doc/api/users.md | |
| parent | 39114d259c6e4bd5bb60b18f561d06cc24e8c852 (diff) | |
| parent | 9c2a6e201388e7e30987a8679ddfa65b9422a38c (diff) | |
| download | gitlab-ce-3374027e3a4e4eb040e59294a9ced9d7886a71e2.tar.gz | |
Merge branch 'master' into fixes/api, code clean up and tests fixed
Conflicts:
doc/api/projects.md
spec/requests/api/projects_spec.rb
Diffstat (limited to 'doc/api/users.md')
| -rw-r--r-- | doc/api/users.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/api/users.md b/doc/api/users.md index 6d5c9d78412..dc31c10eb9d 100644 --- a/doc/api/users.md +++ b/doc/api/users.md @@ -235,6 +235,23 @@ Parameters: + `key` (required) - new SSH key +## Add SSH key for user + +Create new key owned by specified user. Available only for admin + +``` +POST /users/:id/keys +``` + +Parameters: + ++ `id` (required) - id of specified user ++ `title` (required) - new SSH Key's title ++ `key` (required) - new SSH key + +Will return created key with status `201 Created` on success, or `404 Not +found` on fail. + ## Delete SSH key Deletes key owned by currently authenticated user. This is an idempotent function and calling it on a key that is already |
