We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Couldn't load subscription status. Retry
There was an error while loading. Please reload this page.
Here is a simple way to get things working with strong_parameters:
# config/initializers/devise_invitable_strong_parameters.rb Devise::InvitationsController.class_eval do def update_resource_params params.require(resource_name).permit( :invitation_token, :password, :password_confirmation ) end end