chinwagsocial/app/controllers/auth/sessions_controller.rb

18 lines
309 B
Ruby
Raw Normal View History

class Auth::SessionsController < Devise::SessionsController
2016-03-28 09:06:52 +11:00
include Devise::Controllers::Rememberable
layout 'auth'
2016-03-28 09:06:52 +11:00
def create
super do |resource|
remember_me(resource)
end
end
protected
def after_sign_in_path_for(_resource)
stored_location_for(:user) || root_path
end
end