Skip to content

Commit

Permalink
Merge pull request #1206 from python-gitlab/fix/cli-project-list-args
Browse files Browse the repository at this point in the history
fix(cli): add missing args for project lists
  • Loading branch information
max-wittig committed Oct 8, 2020
2 parents 266030a + c73e237 commit be0afdd
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions gitlab/v4/objects/__init__.py
Expand Up @@ -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(
Expand Down

0 comments on commit be0afdd

Please sign in to comment.