aboutsummaryrefslogtreecommitdiff
path: root/src/handler/admin.ts
blob: a626e503d79391c592881baa59488b9a881e2a5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts";
import * as log from "https://deno.land/std/log/mod.ts";
import { isAdmin } from "../util/user.ts";
import { isSetup } from "../util/server.ts";

export const render: HandlerFunc = async (c: Context) => {
    if (await isAdmin(c))
        return await c.render("./src/views/admin.ejs", { initial: false });
    else if (!(await isSetup()))
        return await c.render("./src/views/admin.ejs", { initial: true });
    return c.redirect("/");
}