From fd4539715da589df5a81b333e71875289687922d Mon Sep 17 00:00:00 2001 From: Gauvain Pocentek Date: Sun, 15 May 2016 07:35:06 +0200 Subject: Manage optional parameters for list() and get() * List these elements in the API doc * Implement for License objects --- gitlab/objects.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'gitlab/objects.py') diff --git a/gitlab/objects.py b/gitlab/objects.py index ebfba8b..9c6197c 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -183,6 +183,10 @@ class GitlabObject(object): requiredUrlAttrs = [] #: Attributes that are required when retrieving list of objects. requiredListAttrs = [] + #: Attributes that are optional when retrieving list of objects. + optionalListAttrs = [] + #: Attributes that are optional when retrieving single object. + optionalGetAttrs = [] #: Attributes that are required when retrieving single object. requiredGetAttrs = [] #: Attributes that are required when deleting object. @@ -754,6 +758,9 @@ class License(GitlabObject): canCreate = False idAttr = 'key' + optionalListAttrs = ['popular'] + optionalGetAttrs = ['project', 'fullname'] + class LicenseManager(BaseManager): obj_cls = License -- cgit v1.2.1