Skip to content

Commit

Permalink
show domain name for external users
Browse files Browse the repository at this point in the history
  • Loading branch information
berntjoh committed Dec 11, 2024
1 parent caa066d commit 1c30ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/no/fintlabs/externalUser/ExternalUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public User toUser(){
.builder()
.id(id)
.firstName(firstName)
.lastName(lastName + " (ekstern)")
.lastName(lastName + " (ekstern" + email.split("@")[1] + ")")
.userType("EXTERNAL")
.resourceId(String.valueOf(idpUserObjectId))
.userName(userName)
Expand Down

0 comments on commit 1c30ed1

Please sign in to comment.