diff options
| author | Tom Forbes <tom.forbes@onfido.com> | 2019-08-16 15:05:20 +0100 |
|---|---|---|
| committer | Tom Forbes <tom.forbes@onfido.com> | 2019-08-20 17:24:53 +0100 |
| commit | 29de40ee6a20382c293d8cdc8d831b52ad56a657 (patch) | |
| tree | 2adc3a081deb85abc70e30c2492112f2922db46a /gitlab/v4/objects.py | |
| parent | e8a3585ed0e7dfa2f64f6c3378a598120f5f8167 (diff) | |
| download | gitlab-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.py | 2 |
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 |
