From 7b8813aae55f1a6ae84ac692bb58a016158d3697 Mon Sep 17 00:00:00 2001 From: Novi Sandlin Date: Sun, 23 Mar 2025 13:02:20 -0700 Subject: [PATCH] feat(api): add support for project tag list filters --- gitlab/v4/objects/tags.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gitlab/v4/objects/tags.py b/gitlab/v4/objects/tags.py index 7a559daa7..ad04b4928 100644 --- a/gitlab/v4/objects/tags.py +++ b/gitlab/v4/objects/tags.py @@ -19,6 +19,7 @@ class ProjectTagManager(NoUpdateMixin[ProjectTag]): _path = "/projects/{project_id}/repository/tags" _obj_cls = ProjectTag _from_parent_attrs = {"project_id": "id"} + _list_filters = ("order_by", "sort", "search") _create_attrs = RequiredOptional( required=("tag_name", "ref"), optional=("message",) )