]> git.openstreetmap.org Git - rails.git/commitdiff
Preserve pass_crypt_confirmation in the new user hash
authorTom Hughes <tom@compton.nu>
Thu, 16 Nov 2023 00:29:49 +0000 (00:29 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 16 Nov 2023 00:29:49 +0000 (00:29 +0000)
app/controllers/users_controller.rb

index 36c9f4e2288f06185726045826ae82ed9d927bb0..0b8cab6ddbbe0a09106031376f5cfced9c0b6b5a 100644 (file)
@@ -104,11 +104,11 @@ class UsersController < ApplicationController
         render :action => "new"
       elsif current_user.auth_provider.present?
         # Verify external authenticator before moving on
-        session[:new_user] = current_user.attributes.slice("email", "display_name", "pass_crypt")
+        session[:new_user] = current_user.attributes.slice("email", "display_name", "pass_crypt", "pass_crypt_confirmation")
         redirect_to auth_url(current_user.auth_provider, current_user.auth_uid), :status => :temporary_redirect
       else
         # Save the user record
-        session[:new_user] = current_user.attributes.slice("email", "display_name", "pass_crypt")
+        session[:new_user] = current_user.attributes.slice("email", "display_name", "pass_crypt", "pass_crypt_confirmation")
         redirect_to :action => :terms
       end
     end