diff options
Diffstat (limited to 'src/handler/admin.ts')
-rw-r--r-- | src/handler/admin.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/handler/admin.ts b/src/handler/admin.ts new file mode 100644 index 0000000..a626e50 --- /dev/null +++ b/src/handler/admin.ts @@ -0,0 +1,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("/"); +} |