Adds missing parameter for confirmations

This commit is contained in:
kikito
2015-10-08 15:19:28 +02:00
parent d351daedd4
commit 10de596a94

View File

@@ -39,7 +39,7 @@ class Users::ConfirmationsController < Devise::ConfirmationsController
protected protected
def resource_params def resource_params
params.require(resource_name).permit(:password, :password_confirmation) params.require(resource_name).permit(:password, :password_confirmation, :email)
end end
end end