From b5c267e110b2d7128da4f91c62689456d5ce275f Mon Sep 17 00:00:00 2001 From: Dylann CORDEL Date: Mon, 31 Aug 2020 15:44:36 +0200 Subject: [PATCH] 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 --- gitlab/v4/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index e7d7d237a..eaf1cd05b 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",