mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
parent
f0c85d5e52
commit
78e06d5c7f
2 changed files with 4 additions and 0 deletions
|
@ -46,6 +46,7 @@ export default function sessionRoutes<T extends AnonymousRouter>(router: T, prov
|
|||
}),
|
||||
}),
|
||||
async (ctx, next) => {
|
||||
await provider.interactionDetails(ctx.req, ctx.res);
|
||||
const { username, password } = ctx.guard.body;
|
||||
const type = 'SignInUsernamePassword';
|
||||
ctx.log(type, { username });
|
||||
|
|
|
@ -40,6 +40,7 @@ export default function sessionSocialRoutes<T extends AnonymousRouter>(
|
|||
}),
|
||||
}),
|
||||
async (ctx, next) => {
|
||||
await provider.interactionDetails(ctx.req, ctx.res);
|
||||
const { connectorId, state, redirectUri } = ctx.guard.body;
|
||||
assertThat(state && redirectUri, 'session.insufficient_info');
|
||||
const connector = await getSocialConnectorInstanceById(connectorId);
|
||||
|
@ -60,6 +61,8 @@ export default function sessionSocialRoutes<T extends AnonymousRouter>(
|
|||
}),
|
||||
}),
|
||||
async (ctx, next) => {
|
||||
await provider.interactionDetails(ctx.req, ctx.res);
|
||||
|
||||
const { connectorId, data } = ctx.guard.body;
|
||||
const type = 'SignInSocial';
|
||||
ctx.log(type, { connectorId, data });
|
||||
|
|
Loading…
Add table
Reference in a new issue