Merge branch 'registry-251' into registry-260

This commit is contained in:
Artur Beljajev 2016-12-19 11:05:44 +02:00
commit 5318b129b0
7 changed files with 148 additions and 46 deletions

View file

@ -1,5 +1,6 @@
class Registrar::ContactsController < Registrar::DeppController # EPP controller
before_action :init_epp_contact
helper_method :address_processing?
def index
authorize! :view, Depp::Contact
@ -134,4 +135,8 @@ class Registrar::ContactsController < Registrar::DeppController # EPP controller
params[:q][:valid_to_lteq] = ca_cache
end
def address_processing?
Contact.address_processing?
end
end