1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-03 17:28:30 +09:00
whippy-edition/app/controllers/auth/sessions_controller.rb
2016-03-28 00:06:52 +02:00

12 lines
205 B
Ruby

class Auth::SessionsController < Devise::SessionsController
include Devise::Controllers::Rememberable
layout 'auth'
def create
super do |resource|
remember_me(resource)
end
end
end