blob: eacf8ce36f909d7b43e87e7ad7a1f6242c1f42ad (
plain)
1
2
3
4
5
6
7
8
|
const Context = @import("../../context.zig");
pub const access = .users;
pub fn get(ctx: *Context) !void {
ctx.storage.sessions.remove(ctx.storage, ctx.fingerprint);
ctx.response.headers.fingerprint = "";
}
|