-
Notifications
You must be signed in to change notification settings - Fork 577
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Feature request
Is your feature request related to a problem? Please describe.
I am building a website with supabase and the errors that is returned from supabase.auth only contains a general error code 400 and a message in english. This makes the different errors hard to distinguish from eachother.
Example:
User tries to create an account but the user is already registered so the error returned from supabase.auth.signUp will be
{
message: "User already registered",
status: 400
}Describe the solution you'd like
If the error included a specific error code mapped to particular error then providing a custom message would be easy.
Example:
{
message: "User already registered",
status: 400,
errorCode: 1,
}It would also be really awesome if the error codes was included in the documentation.
Describe alternatives you've considered
I've considered checking the string value returned in the error but if that would change in the future that would in turn break the application.
joeyTedeschi, julianIppolito, mhaezaragoza, RobertOdrowaz, ajmonfue and 86 moreihadabs, dsebastien, cwandev, mwoss, iamflubin and 1 more
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request