summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
authorTom Forbes <tom.forbes@onfido.com>2019-08-16 15:05:20 +0100
committerTom Forbes <tom.forbes@onfido.com>2019-08-20 17:24:53 +0100
commit29de40ee6a20382c293d8cdc8d831b52ad56a657 (patch)
tree2adc3a081deb85abc70e30c2492112f2922db46a /gitlab/v4/objects.py
parente8a3585ed0e7dfa2f64f6c3378a598120f5f8167 (diff)
downloadgitlab-29de40ee6a20382c293d8cdc8d831b52ad56a657.tar.gz
feat: add methods to retrieve an individual project environment
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 0f709fe..fbee2b1 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -1944,7 +1944,7 @@ class ProjectEnvironment(SaveMixin, ObjectDeleteMixin, RESTObject):
class ProjectEnvironmentManager(
- ListMixin, CreateMixin, UpdateMixin, DeleteMixin, RESTManager
+ RetrieveMixin, CreateMixin, UpdateMixin, DeleteMixin, RESTManager
):
_path = "/projects/%(project_id)s/environments"
_obj_cls = ProjectEnvironment