Skip to content

Commit c73e237

Browse files
committed
fix(cli): add missing args for project lists
1 parent 266030a commit c73e237

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

gitlab/v4/objects/__init__.py

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5341,19 +5341,29 @@ class ProjectManager(CRUDMixin, RESTManager):
53415341
)
53425342
_types = {"avatar": types.ImageAttribute}
53435343
_list_filters = (
5344-
"search",
5345-
"owned",
5346-
"starred",
53475344
"archived",
5348-
"visibility",
5345+
"id_after",
5346+
"id_before",
5347+
"last_activity_after",
5348+
"last_activity_before",
5349+
"membership",
5350+
"min_access_level",
53495351
"order_by",
5350-
"sort",
5352+
"owned",
5353+
"repository_checksum_failed",
5354+
"repository_storage",
5355+
"search_namespaces",
5356+
"search",
53515357
"simple",
5352-
"membership",
5358+
"sort",
5359+
"starred",
53535360
"statistics",
5361+
"visibility",
5362+
"wiki_checksum_failed",
5363+
"with_custom_attributes",
53545364
"with_issues_enabled",
53555365
"with_merge_requests_enabled",
5356-
"with_custom_attributes",
5366+
"with_programming_language",
53575367
)
53585368

53595369
def import_project(

0 commit comments

Comments
 (0)