You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey @DonGiulio I don't see the details of your error and you have likely moved on by now but two things you might attempt:
attempt setting default_confirm_success_url in the config/initializers/devise_token_auth.rb file on your rails app (see more initializer options here)
This issue brought to my attention that the mailer views generated by devise_token_auth are a little different than those generated by classic devise, so you may want to run rails generate devise_token_auth:install_views so that the link in your confirmation email works with your confirmation success url.
I'm getting this error when registering a new user,
here's my signUp function:
as called
<form onSubmit={props.handleSubmit(signUp)}>
and these are the parameters received by my devise_token_auth action:
<ActionController::Parameters {"email"=>"[email protected]", "password"=>"pwd", "password_confirmation"=>"pwd", "controller"=>"auth/registrations", "action"=>"create", "registration"=>{"email"=>"[email protected]", "password"=>"pwd", "password_confirmation"=>"pwd"}} permitted: false>
no traces of any of the extra data fields I added:
confirm_success_url
,uid
.They seem to be required by
devise_token_auth
Is it possible I'm doing something wrong there?
thanks,
Giulio
The text was updated successfully, but these errors were encountered: