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