Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
d5879b4a
Unverified
Commit
d5879b4a
authored
1 year ago
by
mucst
Committed by
GitHub
1 year ago
Browse files
Options
Download
Email Patches
Plain Diff
Add missing parameter "public_email" in userToForm(..) (#1016)
Co-authored-by:
t.mucs
<
t.mucs@4flow.de
>
parent
2eb39b04
main
6.x
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/gitlab4j/api/UserApi.java
+1
-0
src/main/java/org/gitlab4j/api/UserApi.java
with
1 addition
and
0 deletions
+1
-0
src/main/java/org/gitlab4j/api/UserApi.java
+
1
-
0
View file @
d5879b4a
...
@@ -984,6 +984,7 @@ public class UserApi extends AbstractApi {
...
@@ -984,6 +984,7 @@ public class UserApi extends AbstractApi {
String
skipConfirmationFeildName
=
create
?
"skip_confirmation"
:
"skip_reconfirmation"
;
String
skipConfirmationFeildName
=
create
?
"skip_confirmation"
:
"skip_reconfirmation"
;
return
(
new
GitLabApiForm
()
return
(
new
GitLabApiForm
()
.
withParam
(
"public_email"
,
user
.
getPublicEmail
(),
false
)
.
withParam
(
"email"
,
user
.
getEmail
(),
create
)
.
withParam
(
"email"
,
user
.
getEmail
(),
create
)
.
withParam
(
"password"
,
password
,
false
)
.
withParam
(
"password"
,
password
,
false
)
.
withParam
(
"reset_password"
,
resetPassword
,
false
)
.
withParam
(
"reset_password"
,
resetPassword
,
false
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets