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

pub const access = .everyone;

const Result = struct {
    is_first: bool,
};

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