blob: d697be200c4b35f9db9e41c4fbf2148a47db67e8 (
plain)
1
2
3
4
5
6
7
|
import type { ActionFunctionArgs } from "@remix-run/node";
import { logout } from "../.server/auth";
export async function action({ request }: ActionFunctionArgs) {
await logout(request);
return null;
}
|