diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2020-10-08 02:11:35 +0200 |
---|---|---|
committer | Nejc Habjan <nejc.habjan@siemens.com> | 2020-10-08 02:11:35 +0200 |
commit | c73e23747d24ffef3c1a2a4e5f4ae24252762a71 (patch) | |
tree | b6461a385636018be0141d382972d79e6ce570cd | |
parent | 266030a67480aaf305069e8fea15b1528fa99d31 (diff) | |
download | gitlab-fix/cli-project-list-args.tar.gz |
fix(cli): add missing args for project listsfix/cli-project-list-args
-rw-r--r-- | gitlab/v4/objects/__init__.py | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/gitlab/v4/objects/__init__.py b/gitlab/v4/objects/__init__.py index 016caec..317e67a 100644 --- a/gitlab/v4/objects/__init__.py +++ b/gitlab/v4/objects/__init__.py @@ -5341,19 +5341,29 @@ class ProjectManager(CRUDMixin, RESTManager): ) _types = {"avatar": types.ImageAttribute} _list_filters = ( - "search", - "owned", - "starred", "archived", - "visibility", + "id_after", + "id_before", + "last_activity_after", + "last_activity_before", + "membership", + "min_access_level", "order_by", - "sort", + "owned", + "repository_checksum_failed", + "repository_storage", + "search_namespaces", + "search", "simple", - "membership", + "sort", + "starred", "statistics", + "visibility", + "wiki_checksum_failed", + "with_custom_attributes", "with_issues_enabled", "with_merge_requests_enabled", - "with_custom_attributes", + "with_programming_language", ) def import_project( |