From 1e35a119513b2d79461d9053c9867482ce050102 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:51:09 -0400 Subject: [PATCH] Create mobile login endpoint --- functions/api/auth/mobile/login.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 functions/api/auth/mobile/login.ts diff --git a/functions/api/auth/mobile/login.ts b/functions/api/auth/mobile/login.ts new file mode 100644 index 0000000..3313618 --- /dev/null +++ b/functions/api/auth/mobile/login.ts @@ -0,0 +1,3 @@ +export async function onRequestGet(context: RequestContext) { + return Response.redirect("/api/auth/oauth"); +}