aboutsummaryrefslogtreecommitdiff
path: root/src/handler
diff options
context:
space:
mode:
authorMarvin Borner2020-07-18 21:54:58 +0200
committerMarvin Borner2020-07-18 21:54:58 +0200
commit985763e3fcb6762fa76b81c059a97648905b3761 (patch)
treee74ddab34567adcb659fcf27b2dc8b227c0c2637 /src/handler
parentc96473af48f650ac568a9a9203f3d6bbe74ff080 (diff)
Started fileview
Diffstat (limited to 'src/handler')
-rw-r--r--src/handler/fileView.ts6
-rw-r--r--src/handler/user.ts5
2 files changed, 11 insertions, 0 deletions
diff --git a/src/handler/fileView.ts b/src/handler/fileView.ts
new file mode 100644
index 0000000..90c7176
--- /dev/null
+++ b/src/handler/fileView.ts
@@ -0,0 +1,6 @@
+import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts";
+import { cleanPath } from "../util/files.ts";
+
+export const handlePath: HandlerFunc = async (c: Context) => {
+ return await c.render("./src/views/index.html", { path: cleanPath(c.path) });
+};
diff --git a/src/handler/user.ts b/src/handler/user.ts
index 28d6fbd..fe65eaa 100644
--- a/src/handler/user.ts
+++ b/src/handler/user.ts
@@ -2,3 +2,8 @@ import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts
import db from "../db/user.ts";
export const index: HandlerFunc = async (c: Context) => c.params.name;
+export const register: HandlerFunc = async (c: Context) => {
+ const { username, email, password } = await c.body();
+ await db.createUser(email, username, password);
+
+}