summaryrefslogtreecommitdiff
path: root/gitlab/objects.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-01-21 14:13:28 +0100
committerGauvain Pocentek <gauvain@pocentek.net>2017-01-21 14:13:28 +0100
commitde0536b1cfff43c494c64930a37333529e589a94 (patch)
tree42e80876f41c75551dee1335b7b3a3848ae9008e /gitlab/objects.py
parentc538de75f39ecc29741b961b981e3fdf0b18d317 (diff)
downloadgitlab-de0536b1cfff43c494c64930a37333529e589a94.tar.gz
Support the scope attribute in runners.list()
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r--gitlab/objects.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 8f44ef9..b2c0c04 100644
--- a/gitlab/objects.py
+++ b/gitlab/objects.py
@@ -2478,6 +2478,7 @@ class Runner(GitlabObject):
_url = '/runners'
canCreate = False
optionalUpdateAttrs = ['description', 'active', 'tag_list']
+ optionalListAttrs = ['scope']
class RunnerManager(BaseManager):