1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-28 14:58:21 +09:00
mastodon/app/controllers/auth/sessions_controller.rb

18 lines
309 B
Ruby

class Auth::SessionsController < Devise::SessionsController
include Devise::Controllers::Rememberable
layout 'auth'
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