From 603a351c71196a7f516367fbf90519f9452f3c55 Mon Sep 17 00:00:00 2001 From: Nejc Habjan Date: Tue, 27 Apr 2021 20:02:42 +0200 Subject: fix(objects): allow lists for filters for in all objects --- gitlab/v4/objects/projects.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gitlab/v4/objects/projects.py') diff --git a/gitlab/v4/objects/projects.py b/gitlab/v4/objects/projects.py index 3dba95d..4618292 100644 --- a/gitlab/v4/objects/projects.py +++ b/gitlab/v4/objects/projects.py @@ -676,7 +676,6 @@ class ProjectManager(CRUDMixin, RESTManager): "service_desk_enabled", ), ) - _types = {"avatar": types.ImageAttribute} _list_filters = ( "archived", "id_after", @@ -695,6 +694,7 @@ class ProjectManager(CRUDMixin, RESTManager): "sort", "starred", "statistics", + "topic", "visibility", "wiki_checksum_failed", "with_custom_attributes", @@ -702,6 +702,7 @@ class ProjectManager(CRUDMixin, RESTManager): "with_merge_requests_enabled", "with_programming_language", ) + _types = {"avatar": types.ImageAttribute, "topic": types.ListAttribute} def import_project( self, -- cgit v1.2.1