aboutsummaryrefslogtreecommitdiff
path: root/src/routes/api/auth/first-login.zig
blob: 523fdf4574f3972688f8ea5628fd3fcb8f52267b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const std = @import("std");

const memora = @import("memora");
const Context = memora.Context;

pub const access = .everyone;

const Result = struct {
    is_first: bool,
};

pub fn post(ctx: *Context) anyerror!Result {
    _ = ctx;
    return .{ .is_first = false };
}