Move non-action public method controller callback to private methods (#31933)

This commit is contained in:
Matt Jankowski 2024-09-18 04:05:25 -04:00 committed by GitHub
parent f3f06dafe3
commit a397141d78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,11 +20,6 @@ class Auth::SessionsController < Devise::SessionsController
p.form_action(false)
end
def check_suspicious!
user = find_user
@login_is_suspicious = suspicious_sign_in?(user) unless user.nil?
end
def create
super do |resource|
# We only need to call this if this hasn't already been
@ -101,6 +96,11 @@ class Auth::SessionsController < Devise::SessionsController
private
def check_suspicious!
user = find_user
@login_is_suspicious = suspicious_sign_in?(user) unless user.nil?
end
def home_paths(resource)
paths = [about_path, '/explore']