aboutsummaryrefslogtreecommitdiff
path: root/src/handler/user.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/handler/user.ts')
-rw-r--r--src/handler/user.ts12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/handler/user.ts b/src/handler/user.ts
index fe65eaa..9881439 100644
--- a/src/handler/user.ts
+++ b/src/handler/user.ts
@@ -2,8 +2,16 @@ 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);
+ const success = await db.createUser(email, username, password);
+ // TODO: Send email
+ return { success };
+};
-}
+export const login: HandlerFunc = async (c: Context) => {
+ const { username, password } = await c.body();
+ const success = await db.login(username, password);
+ return { success };
+};