sendou.ink/app/modules/auth/index.ts
Kalle 4eaeb48136
Alternative login flow (magic link via bot) (#1488)
* Log in link creation initial

* Add global name to update all command

* Remove left over log

* Login command

* Update command

* Add todos

* TODOs

* Migration file fix order
2023-09-09 10:27:59 +03:00

16 lines
317 B
TypeScript

export {
callbackLoader,
impersonateAction,
stopImpersonatingAction,
logInAction,
logOutAction,
createLogInLinkAction,
logInViaLinkLoader,
} from "./routes.server";
export { getUser, requireUser } from "./user.server";
export { useUser } from "./user";
export type { AuthErrorCode } from "./errors";