Skip to content

Commit f9aeb42

Browse files
Thomasrludomikula
Thomasr
authored andcommitted
form login adds email field.
1 parent 9a11d13 commit f9aeb42

File tree

1 file changed

+1
-1
lines changed
  • server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/authentication/request/form

1 file changed

+1
-1
lines changed

server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/authentication/request/form/FormAuthRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public Mono<AuthUser> auth(AuthRequestContext authRequestContext) {
5555
return Mono.empty();
5656
});
5757
})
58-
.thenReturn(AuthUser.builder().uid(context.getLoginId()).username(context.getLoginId()).build());
58+
.thenReturn(AuthUser.builder().uid(context.getLoginId()).username(context.getLoginId()).email(context.getLoginId()).build());
5959
}
6060

6161
@Override

0 commit comments

Comments
 (0)