Source code for the custom Mastodon (Glitchsoc) instance on berserker.town. https://berserker.town/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
309 B

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