Redirect to custom error page
I'm using this in my
auth.ts
to handle my "maintenance" mode. To explain it simply, I am creating a maintenance mode that I can activate. If its activated, only certain users are allowed to log in or register. It is working, but the problem I'm having is with the APIError
.
I want to make it so that if this error occurs, it will take you to a custom error page instead of the /api/auth/callback/discord?code=...
that it currently does.
I am only using Discord auth with Postgres.Solution:
Jump to solution
You could add a
mapProfileToUser
in the discord provider config, then check the needed info to throw an APIError and redirect to a custom error page:
2 Replies
Solution
You could add a
mapProfileToUser
in the discord provider config, then check the needed info to throw an APIError and redirect to a custom error page:
That worked! Thank you very much!