@@ -253,7 +253,7 @@ class UserManager(CRUDMixin, RESTManager):
253253 _obj_cls = User
254254
255255 _list_filters = ('active' , 'blocked' , 'username' , 'extern_uid' , 'provider' ,
256- 'external' , 'search' )
256+ 'external' , 'search' , 'custom_attributes' )
257257 _create_attrs = (
258258 tuple (),
259259 ('email' , 'username' , 'name' , 'password' , 'reset_password' , 'skype' ,
@@ -656,7 +656,7 @@ class GroupManager(CRUDMixin, RESTManager):
656656 _path = '/groups'
657657 _obj_cls = Group
658658 _list_filters = ('skip_groups' , 'all_available' , 'search' , 'order_by' ,
659- 'sort' , 'statistics' , 'owned' )
659+ 'sort' , 'statistics' , 'owned' , 'custom_attributes' )
660660 _create_attrs = (
661661 ('name' , 'path' ),
662662 ('description' , 'visibility' , 'parent_id' , 'lfs_enabled' ,
@@ -2639,7 +2639,8 @@ class ProjectManager(CRUDMixin, RESTManager):
26392639 )
26402640 _list_filters = ('search' , 'owned' , 'starred' , 'archived' , 'visibility' ,
26412641 'order_by' , 'sort' , 'simple' , 'membership' , 'statistics' ,
2642- 'with_issues_enabled' , 'with_merge_requests_enabled' )
2642+ 'with_issues_enabled' , 'with_merge_requests_enabled' ,
2643+ 'custom_attributes' )
26432644
26442645
26452646class Runner (SaveMixin , ObjectDeleteMixin , RESTObject ):
0 commit comments