1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/sessions_controller.rb
2015-05-05 03:10:25 +02:00

9 lines
242 B
Ruby

class SessionsController < Devise::SessionsController
#before_action :set_csrf_headers, only: [:create, :destroy]
protected
def set_csrf_headers
cookies['XSRF-TOKEN'] = form_authenticity_token if protect_against_forgery?
end
end