mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-27 11:41:35 +01:00
7e14eefc81
registration API
17 lines
279 B
Ruby
17 lines
279 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)
|
|
root_path
|
|
end
|
|
end
|