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