是否有任何示例和/或方法可以在成功登录或注册输入凭据时重定向到私人仪表板next-auth?我找不到任何关于此的明确文档。
我正在考虑在下面添加重定向,但不确定这是否是正确的方法:
callbacks.signIn = async (data, account, profile) => {
if ((account.provider === 'google' && profile.verified_email === true) || (account.type === 'credentials' && data.status === 200)) {
return Promise.resolve(true)
} else {
return Promise.resolve(false)
}
}
慕码人2483693
胡子哥哥
波斯汪
相关分类