From: Tom Hughes Date: Thu, 16 Nov 2023 00:29:49 +0000 (+0000) Subject: Preserve pass_crypt_confirmation in the new user hash X-Git-Tag: live~1291 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/b1553135fc03e6b4b5f919b98d0fe0e25f37ae10?ds=inline;hp=--cc Preserve pass_crypt_confirmation in the new user hash --- b1553135fc03e6b4b5f919b98d0fe0e25f37ae10 diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 36c9f4e22..0b8cab6dd 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -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