diff options
-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( |