diff options
author | LarsVomMars | 2020-07-30 20:17:38 +0200 |
---|---|---|
committer | LarsVomMars | 2020-07-30 20:17:38 +0200 |
commit | 12c244a85d68b54211a08918ea9751ede90563b4 (patch) | |
tree | 5f8aed24cd175963427b35582cce6f8660d0a1ed /src/handler | |
parent | f02c4054984fb8c12bfa4af9560a5b2be38810c0 (diff) |
Minor improvements
Diffstat (limited to 'src/handler')
-rw-r--r-- | src/handler/fileView.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/handler/fileView.ts b/src/handler/fileView.ts index eb9c3a1..29bc7a9 100644 --- a/src/handler/fileView.ts +++ b/src/handler/fileView.ts @@ -1,6 +1,8 @@ import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts"; import { getFiles } from "../util/files.ts"; +import { getCurrentUser } from "../util/user.ts"; export const handlePath: HandlerFunc = async (c: Context) => { - return await c.render("./src/views/index.html", { files: await getFiles(c.path) }); -}; + if (!(await getCurrentUser(c))) return c.redirect("/user/login"); // TODO: Handle shared files + return await c.render("./src/views/index.ejs", { files: await getFiles(c) }); +} |