summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
authorRobert Lu <robberphex@gmail.com>2017-09-11 19:45:16 +0800
committerRobert Lu <robberphex@gmail.com>2017-09-11 19:49:45 +0800
commitb537b30ab1cff0e465d6e299c8e55740cca1ff85 (patch)
tree1bb83978e89ddcd3776bb509de311617f4d7bbd1 /gitlab
parent4b3678669efef823fdf2ecc5251d9003a806d3e1 (diff)
downloadgitlab-b537b30ab1cff0e465d6e299c8e55740cca1ff85.tar.gz
add list method
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/v4/objects.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 714c118..353f854 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -1035,8 +1035,7 @@ class ProjectTag(ObjectDeleteMixin, RESTObject):
self.release = server_data
-class ProjectTagManager(GetMixin, CreateMixin, DeleteMixin,
- RESTManager):
+class ProjectTagManager(NoUpdateMixin, RESTManager):
_path = '/projects/%(project_id)s/repository/tags'
_obj_cls = ProjectTag
_from_parent_attrs = {'project_id': 'id'}