diff options
author | Dylann CORDEL <cordel.d@free.fr> | 2020-08-31 15:44:36 +0200 |
---|---|---|
committer | DylannCordel <cordel.d@free.fr> | 2020-08-31 17:05:10 +0200 |
commit | b5c267e110b2d7128da4f91c62689456d5ce275f (patch) | |
tree | 37e10db7d9f9e50b6132a56630d8cacb02cd0ade /gitlab | |
parent | e6a9ba99692105405622ed196db36a05c2dcb1b8 (diff) | |
download | gitlab-b5c267e110b2d7128da4f91c62689456d5ce275f.tar.gz |
fix: wrong reconfirmation parameter when updating user's email
Since version 10.3 (and later), param to not send (re)confirmation when updating an user is
`skip_reconfirmation` (and not `skip_confirmation`).
See:
* https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/15175?tab=
* https://docs.gitlab.com/11.11/ee/api/users.html#user-modification
* https://docs.gitlab.com/ee/api/users.html#user-modification
Diffstat (limited to 'gitlab')
-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 e7d7d23..eaf1cd0 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -469,7 +469,7 @@ class UserManager(CRUDMixin, RESTManager): "admin", "can_create_group", "website_url", - "skip_confirmation", + "skip_reconfirmation", "external", "organization", "location", |