Skip to content

Commit

Permalink
form login adds email field.
Browse files Browse the repository at this point in the history
  • Loading branch information
goldants committed Jul 8, 2024
1 parent eed53ca commit 5bbd7dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public Mono<AuthUser> auth(AuthRequestContext authRequestContext) {
return Mono.empty();
});
})
.thenReturn(AuthUser.builder().uid(context.getLoginId()).username(context.getLoginId()).build());
.thenReturn(AuthUser.builder().uid(context.getLoginId()).username(context.getLoginId()).email(context.getLoginId()).build());
}

@Override
Expand Down

0 comments on commit 5bbd7dc

Please sign in to comment.