feat(api): add support for project tag list filters · python-gitlab/python-gitlab@378a836

Original file line numberDiff line numberDiff line change

@@ -19,6 +19,7 @@ class ProjectTagManager(NoUpdateMixin[ProjectTag]):

1919

_path = "/projects/{project_id}/repository/tags"

2020

_obj_cls = ProjectTag

2121

_from_parent_attrs = {"project_id": "id"}

22+

_list_filters = ("order_by", "sort", "search")

2223

_create_attrs = RequiredOptional(

2324

required=("tag_name", "ref"), optional=("message",)

2425

)