Files
Nils-Johan Gynther ffe50e5151
Test Suite / test (24.15.0) (push) Has been cancelled
feat: add TypeScript definitions for next-auth session with accessToken and user details
2026-05-04 20:09:21 +02:00

8 lines
146 B
TypeScript

'use server';
import { signOut } from '../../auth';
export async function signOutAction() {
await signOut({ redirectTo: '/login' });
}