diff options
author | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2014-08-21 11:03:17 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2014-08-21 11:03:17 +0200 |
commit | 09e4a64cda0531f7dd45984625cf5e1c90bb430f (patch) | |
tree | 44327ba2b0d7eccb1ddc31ef10d04a1da9dc93be /gitlab.py | |
parent | 01335f3b904a7ea4c1fee2d5b7f84f6420577834 (diff) | |
download | gitlab-09e4a64cda0531f7dd45984625cf5e1c90bb430f.tar.gz |
add support for UserKey listing and deletion
Diffstat (limited to 'gitlab.py')
-rw-r--r-- | gitlab.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -605,9 +605,9 @@ class GitlabObject(object): class UserKey(GitlabObject): _url = '/users/%(user_id)s/keys' canGet = False - canList = False + canList = True canUpdate = False - canDelete = False + canDelete = True requiredCreateAttrs = ['user_id', 'title', 'key'] |