chatbot-template/auth.ts
2023-06-20 14:38:04 +01:00

36 lines
647 B
TypeScript

import NextAuth from 'next-auth'
import GitHub from 'next-auth/providers/github'
declare module 'next-auth' {
interface Session {
user: {
/** The user's id. */
id: string
}
}
}
export const {
handlers: { GET, POST },
auth,
CSRF_experimental
} = NextAuth({
// @ts-expect-error
providers: [GitHub],
callbacks: {
jwt: async ({ token, profile }) => {
if (profile) {
token.id = profile.id
token.image = profile.picture
}
return token
}
// @TODO
// authorized({ request, auth }) {
// return !!auth?.user
// }
},
pages: {
signIn: '/sign-in'
}
})