Browse Source

Start work on login

ghorsington 3 years ago
parent
commit
a72f2da158
1 changed files with 6 additions and 0 deletions
  1. 6 0
      web/src/routes/auth.ts

+ 6 - 0
web/src/routes/auth.ts

@@ -0,0 +1,6 @@
+import { Request as ExpressRequest, Response as ExpressResponse } from "express";
+
+export const get = async (req: ExpressRequest, res: ExpressResponse): Promise<void> => {
+    console.log(req.url);
+    res.redirect("/");
+};