Change deprecated usage of strings in if blocks

This commit is contained in:
Alex Sherman 2020-01-29 15:13:48 +05:00
parent af57711dc0
commit 95ad3086b0
4 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@ module Epp
before_action :latin_only
before_action :validate_against_schema
before_action :validate_request
before_action :update_epp_session, if: 'signed_in?'
before_action :update_epp_session, if: -> { signed_in? }
around_action :wrap_exceptions