summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
authorMax Wittig <max.wittig95@gmail.com>2020-01-26 17:20:40 +0100
committerMax Wittig <max.wittig95@gmail.com>2020-01-26 17:35:16 +0100
commitbded2de51951902444bc62aa016a3ad34aab799e (patch)
treefe7426e1ca24d8e76cca404d1c5027741bf6715d /gitlab/v4/objects.py
parent7fd3226fc6b629d503bc1b0a657bc21f69bc4696 (diff)
downloadgitlab-bded2de51951902444bc62aa016a3ad34aab799e.tar.gz
refactor: support new list filters
This is most likely only useful for the CLI
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index c38a4bf..1750a36 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -268,6 +268,13 @@ class UserProjectManager(ListMixin, CreateMixin, RESTManager):
"statistics",
"with_issues_enabled",
"with_merge_requests_enabled",
+ "with_custom_attributes",
+ "with_programming_language",
+ "wiki_checksum_failed",
+ "repository_checksum_failed",
+ "min_access_level",
+ "id_after",
+ "id_before",
)
def list(self, **kwargs):
@@ -1192,12 +1199,16 @@ class GroupProjectManager(ListMixin, RESTManager):
"order_by",
"sort",
"search",
- "ci_enabled_first",
"simple",
"owned",
"starred",
"with_custom_attributes",
"include_subgroups",
+ "with_issues_enabled",
+ "with_merge_requests_enabled",
+ "with_shared",
+ "min_access_level",
+ "with_security_reports",
)