fix: 500 when loggin in
This commit is contained in:
parent
5afdbad461
commit
a091387c1c
3 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ public class UserMappingService {
|
|||
}
|
||||
|
||||
public UserEntity mapToUserEntity(CreateUserDto createUserDto) {
|
||||
return new UserEntity(createUserDto.getUsername(), createUserDto.getKeycloakId(), 0);
|
||||
return new UserEntity(createUserDto.getKeycloakId(), createUserDto.getUsername(), 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue