diff options
author | Robert Lu <robberphex@gmail.com> | 2017-09-11 19:45:16 +0800 |
---|---|---|
committer | Robert Lu <robberphex@gmail.com> | 2017-09-11 19:49:45 +0800 |
commit | b537b30ab1cff0e465d6e299c8e55740cca1ff85 (patch) | |
tree | 1bb83978e89ddcd3776bb509de311617f4d7bbd1 /gitlab | |
parent | 4b3678669efef823fdf2ecc5251d9003a806d3e1 (diff) | |
download | gitlab-b537b30ab1cff0e465d6e299c8e55740cca1ff85.tar.gz |
add list method
Diffstat (limited to 'gitlab')
-rw-r--r-- | gitlab/v4/objects.py | 3 |
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'} |