mirror of
https://github.com/SkalaraAI/skalara.git
synced 2025-04-09 15:10:16 -04:00
34 lines
966 B
TypeScript
34 lines
966 B
TypeScript
import { createRouteHandlerClient } from '@supabase/auth-helpers-nextjs'
|
|
import { cookies } from 'next/headers'
|
|
import { NextResponse } from 'next/server'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export async function POST(request: Request) {
|
|
const requestUrl = new URL(request.url)
|
|
const formData = await request.formData()
|
|
const email = String(formData.get('email'))
|
|
const password = String(formData.get('password'))
|
|
const supabase = createRouteHandlerClient({ cookies })
|
|
|
|
const { error } = await supabase.auth.signInWithPassword({
|
|
email,
|
|
password,
|
|
})
|
|
|
|
if (error) {
|
|
return NextResponse.redirect(
|
|
`${requestUrl.origin}/login?error=Could not authenticate user`,
|
|
{
|
|
// a 301 status is required to redirect from a POST to a GET route
|
|
status: 301,
|
|
}
|
|
)
|
|
}
|
|
|
|
return NextResponse.redirect(requestUrl.origin, {
|
|
// a 301 status is required to redirect from a POST to a GET route
|
|
status: 301,
|
|
})
|
|
}
|