🧑💻 (dev) change register flow
Change the user creation flow in the register so that it must go through the main create user service first instead of directly accessing the create user repo.
This commit is contained in:
6
src/modules/userSession/index.ts
Normal file
6
src/modules/userSession/index.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import Elysia from "elysia";
|
||||
|
||||
export const userSessionModule = new Elysia({ prefix: "/sessions" }).get(
|
||||
"/",
|
||||
() => "User Session Module is working!"
|
||||
);
|
||||
Reference in New Issue
Block a user