105842700-translation_and_link_fix

This commit is contained in:
Stas 2015-12-11 17:33:28 +02:00
parent c315c17178
commit 2b186e9c93
6 changed files with 198 additions and 2 deletions

View file

@ -0,0 +1,8 @@
class Registrant::RegistrantsController < RegistrantController
def show
@contact = Registrant.find(params[:id])
authorize! :read, @contact
@contact.valid?
end
end

View file

@ -3,6 +3,5 @@ class Registrant::RegistrarsController < RegistrantController
def show
@registrar = Registrar.find(params[:id])
authorize! :read, @registrar
@registrar.valid?
end
end