Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Melodic
melodic-upperware
Commits
57d7f3a9
Commit
57d7f3a9
authored
Jun 07, 2022
by
Jan Marchel
Browse files
small fix
parent
069d94dc
Pipeline
#22157
canceled with stages
in 2 minutes and 27 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
gui-backend/src/main/java/eu/melodic/upperware/guibackend/controller/user/request/NewUserRequest.java
View file @
57d7f3a9
...
...
@@ -15,10 +15,8 @@ public class NewUserRequest extends NewUserAutogeneratedPasswordRequest {
private
String
mail
;
@Builder
public
NewUserRequest
(
String
username
,
UserRole
userRole
,
String
password
,
String
passwordConfirmation
,
String
fullName
,
String
mail
)
{
super
(
username
,
userRole
);
super
(
username
,
userRole
,
fullName
,
mail
);
this
.
password
=
password
;
this
.
passwordConfirmation
=
passwordConfirmation
;
this
.
fullName
=
fullName
;
this
.
mail
=
mail
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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