1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-11 21:29:09 +09:00
whippy-edition/app/controllers/auth/sessions_controller.rb

12 lines
205 B
Ruby
Raw Normal View History

class Auth::SessionsController < Devise::SessionsController
2016-03-28 07:06:52 +09:00
include Devise::Controllers::Rememberable
layout 'auth'
2016-03-28 07:06:52 +09:00
def create
super do |resource|
remember_me(resource)
end
end
end