Skip to content

Commit b5c267e

Browse files
committed
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
1 parent e6a9ba9 commit b5c267e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/v4/objects.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ class UserManager(CRUDMixin, RESTManager):
469469
"admin",
470470
"can_create_group",
471471
"website_url",
472-
"skip_confirmation",
472+
"skip_reconfirmation",
473473
"external",
474474
"organization",
475475
"location",

0 commit comments

Comments
 (0)