6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
|
import { Ctx } from "blitz"
|
||
|
|
||
|
export default async function logout(_: any, ctx: Ctx) {
|
||
|
return await ctx.session.$revoke()
|
||
|
}
|