This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-05 13:43:05 -08:00
|
|
|
class Auth::SessionsController < Devise::SessionsController
|
2016-03-27 15:06:52 -07:00
|
|
|
include Devise::Controllers::Rememberable
|
|
|
|
|
2016-03-05 13:43:05 -08:00
|
|
|
layout 'auth'
|
2016-03-27 15:06:52 -07:00
|
|
|
|
|
|
|
def create
|
|
|
|
super do |resource|
|
|
|
|
remember_me(resource)
|
|
|
|
end
|
|
|
|
end
|
2016-09-26 14:55:21 -07:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def after_sign_in_path_for(_resource)
|
2016-10-03 07:38:22 -07:00
|
|
|
last_url = stored_location_for(:user)
|
|
|
|
|
|
|
|
if [about_path].include?(last_url)
|
|
|
|
root_path
|
|
|
|
else
|
|
|
|
last_url || root_path
|
|
|
|
end
|
2016-09-26 14:55:21 -07:00
|
|
|
end
|
2016-03-05 13:43:05 -08:00
|
|
|
end
|