diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-01-21 14:13:28 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-01-21 14:13:28 +0100 |
commit | de0536b1cfff43c494c64930a37333529e589a94 (patch) | |
tree | 42e80876f41c75551dee1335b7b3a3848ae9008e /gitlab/objects.py | |
parent | c538de75f39ecc29741b961b981e3fdf0b18d317 (diff) | |
download | gitlab-de0536b1cfff43c494c64930a37333529e589a94.tar.gz |
Support the scope attribute in runners.list()
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r-- | gitlab/objects.py | 1 |
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): |