2016-03-05 15:43:05 -06:00
|
|
|
class Auth::SessionsController < Devise::SessionsController
|
2016-03-27 17:06:52 -05:00
|
|
|
include Devise::Controllers::Rememberable
|
|
|
|
|
2016-03-05 15:43:05 -06:00
|
|
|
layout 'auth'
|
2016-03-27 17:06:52 -05:00
|
|
|
|
|
|
|
def create
|
|
|
|
super do |resource|
|
|
|
|
remember_me(resource)
|
|
|
|
end
|
|
|
|
end
|
2016-09-26 16:55:21 -05:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def after_sign_in_path_for(_resource)
|
2016-10-03 09:38:22 -05:00
|
|
|
last_url = stored_location_for(:user)
|
|
|
|
|
|
|
|
if [about_path].include?(last_url)
|
|
|
|
root_path
|
|
|
|
else
|
|
|
|
last_url || root_path
|
|
|
|
end
|
2016-09-26 16:55:21 -05:00
|
|
|
end
|
2016-03-05 15:43:05 -06:00
|
|
|
end
|