This repository has been archived on 2024-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/controllers/auth/sessions_controller.rb

18 lines
279 B
Ruby
Raw Normal View History

class Auth::SessionsController < Devise::SessionsController
2016-03-27 18:06:52 -04:00
include Devise::Controllers::Rememberable
layout 'auth'
2016-03-27 18:06:52 -04:00
def create
super do |resource|
remember_me(resource)
end
end
protected
def after_sign_in_path_for(_resource)
root_path
end
end