diff options
author | Max Wittig <max.wittig95@gmail.com> | 2019-08-22 18:54:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-22 18:54:36 +0200 |
commit | 0389e664c0a04021b3df097bacad3940f158607f (patch) | |
tree | 915c5275913bf4671393872e3139958be688e8f0 /gitlab/v4/objects.py | |
parent | 99a941526a1845559d92b607fd9e2d86efb7e7b6 (diff) | |
parent | 29de40ee6a20382c293d8cdc8d831b52ad56a657 (diff) | |
download | gitlab-0389e664c0a04021b3df097bacad3940f158607f.tar.gz |
Merge pull request #865 from orf/retrieve-environment
feat: add methods to retrieve an individual project environment
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 5637859..dd73be2 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 |