Remove unnecessary statement

CSRF protection makes no sense in EPP and is already disabled with
`skip_before_action :verify_authenticity_token`.
This commit is contained in:
Artur Beljajev 2019-09-12 17:17:47 +03:00
parent 52092d59b1
commit 99ddcadd89

View file

@ -1,6 +1,5 @@
class EppController < ApplicationController
layout false
protect_from_forgery with: :null_session
skip_before_action :verify_authenticity_token
before_action :ensure_session_id_passed