summaryrefslogtreecommitdiff
path: root/gitlab.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab.py')
-rw-r--r--gitlab.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab.py b/gitlab.py
index 885741a..1bd56f8 100644
--- a/gitlab.py
+++ b/gitlab.py
@@ -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']