Reformat code

#343
This commit is contained in:
Artur Beljajev 2017-10-26 19:35:08 +03:00
parent ff9372baea
commit 396f74cfb1

View file

@ -63,10 +63,21 @@ module Admin
end end
def registrar_params def registrar_params
params.require(:registrar).permit( params.require(:registrar).permit(:name,
:name, :reg_no, :vat_no, :street, :city, :state, :zip, :billing_address, :reg_no,
:country_code, :email, :phone, :website, :billing_email, :code, :test_registrar :vat_no,
) :street,
:city,
:state,
:zip,
:billing_address,
:country_code,
:email,
:phone,
:website,
:billing_email,
:code,
:test_registrar)
end end
end end
end end