summaryrefslogtreecommitdiff
path: root/gitlab/objects.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r--gitlab/objects.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 42d5b38..76cc219 100644
--- a/gitlab/objects.py
+++ b/gitlab/objects.py
@@ -679,6 +679,18 @@ class ApplicationSettingsManager(BaseManager):
obj_cls = ApplicationSettings
+class Key(GitlabObject):
+ _url = '/deploy_keys'
+ canGet = 'from_list'
+ canCreate = False
+ canUpdate = False
+ canDelete = False
+
+
+class KeyManager(BaseManager):
+ obj_cls = Key
+
+
class GroupIssue(GitlabObject):
_url = '/groups/%(group_id)s/issues'
canGet = 'from_list'