fix redirect

This commit is contained in:
Alex Turchyn
2023-08-30 14:39:14 +03:00
parent ceb052b158
commit c098e61947
2 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ class RegistrationsController < Devise::RegistrationsController
return unless signed_in?
return if params[:redir].blank?
redirect_to after_sign_up_path_for(current_user)
redirect_to after_sign_up_path_for(current_user), allow_other_host: true
end
def require_no_authentication