We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can something like authorization_error be emitted if user_exists on signup? This is returned as a 400 from the API
authorization_error
user_exists
{"name":"BadRequestError","code":"user_exists","description":"The user already exists.","statusCode":400}
This is needed so we can show a different message when a username is already in use.
{"name":"BadRequestError","code":"user_exists","description":"The user already exists (username: test123).","statusCode":400}
I can only see login errors emitted.
lock/src/core/actions.js
Line 241 in 6c5a793
The text was updated successfully, but these errors were encountered:
I see signup error exists, found this in the code, not the docs
signup error
Sorry, something went wrong.
Thanks @thduttonuk, can you share the specific docs you were looking at and I can get them updated?
@stevehobbsdev I was looking at the .on section https://auth0.com/docs/libraries/lock/lock-api-reference#on-
.on
Thanks
No branches or pull requests
Can something like
authorization_error
be emitted ifuser_exists
on signup? This is returned as a 400 from the API{"name":"BadRequestError","code":"user_exists","description":"The user already exists.","statusCode":400}
This is needed so we can show a different message when a username is already in use.
{"name":"BadRequestError","code":"user_exists","description":"The user already exists (username: test123).","statusCode":400}
I can only see login errors emitted.
lock/src/core/actions.js
Line 241 in 6c5a793
The text was updated successfully, but these errors were encountered: