aboutsummaryrefslogtreecommitdiff
path: root/src/handler
diff options
context:
space:
mode:
authorMarvin Borner2020-07-18 22:27:48 +0200
committerMarvin Borner2020-07-18 22:27:48 +0200
commitf8cff89de2ef165748362cf0f104e2bf7bf88618 (patch)
tree7c64e49d890aa186f9810a512b03c2eef6d7c27d /src/handler
parent317b466e1080166aa6bf40a3766014593cbc95f2 (diff)
Fileview..
Diffstat (limited to 'src/handler')
-rw-r--r--src/handler/fileView.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/handler/fileView.ts b/src/handler/fileView.ts
index 90c7176..eb9c3a1 100644
--- a/src/handler/fileView.ts
+++ b/src/handler/fileView.ts
@@ -1,6 +1,6 @@
import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts";
-import { cleanPath } from "../util/files.ts";
+import { getFiles } from "../util/files.ts";
export const handlePath: HandlerFunc = async (c: Context) => {
- return await c.render("./src/views/index.html", { path: cleanPath(c.path) });
+ return await c.render("./src/views/index.html", { files: await getFiles(c.path) });
};