diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2020-04-05 21:56:43 +0200 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2020-04-05 22:48:33 +0200 |
commit | 6cb9d9238ea3cc73689d6b71e991f2ec233ee8e6 (patch) | |
tree | 3b94bc78d2f32e6e1368874d807b3aca8e5ab231 /gitlab/mixins.py | |
parent | 6ce5d1f14060a403f05993d77bf37720c25534ba (diff) | |
download | gitlab-6cb9d9238ea3cc73689d6b71e991f2ec233ee8e6.tar.gz |
feat(api): add support for Group Import/Export API (#1037)
Diffstat (limited to 'gitlab/mixins.py')
-rw-r--r-- | gitlab/mixins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/mixins.py b/gitlab/mixins.py index 39d13c9..3053427 100644 --- a/gitlab/mixins.py +++ b/gitlab/mixins.py @@ -444,7 +444,7 @@ class AccessRequestMixin(object): class ExportMixin(object): - @cli.register_custom_action("ProjectExport") + @cli.register_custom_action(("GroupExport", "ProjectExport")) @exc.on_http_error(exc.GitlabGetError) def download(self, streamed=False, action=None, chunk_size=1024, **kwargs): """Download the archive of a resource export. |