2016-11-01 03:18:27 +00:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 19:23:47 +00:00
|
|
|
|
2016-11-01 03:18:27 +00:00
|
|
|
module Users
|
|
|
|
class SessionsController < Devise::SessionsController
|
|
|
|
after_action :store_location, only: [:new]
|
2016-10-22 08:46:39 +00:00
|
|
|
|
2016-11-01 03:18:27 +00:00
|
|
|
protected
|
2016-10-22 08:46:39 +00:00
|
|
|
|
2016-11-01 03:18:27 +00:00
|
|
|
def after_sign_in_path_for(resource)
|
|
|
|
stored = stored_location_for(User)
|
|
|
|
return stored if stored
|
|
|
|
|
|
|
|
if request.referer&.match(sign_in_url) || request.referer&.match(sign_up_url)
|
|
|
|
super
|
|
|
|
else
|
|
|
|
request.referer || root_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def store_location
|
|
|
|
store_location_for(User, params[:redirect_to]) if params[:redirect_to]
|
2016-10-22 08:46:39 +00:00
|
|
|
end
|
|
|
|
end
|
2016-10-19 04:40:52 +00:00
|
|
|
end
|