105842700-routes_fix

This commit is contained in:
Stas 2016-01-25 17:53:38 +02:00
parent 79b435cef2
commit 216c4e9fa0
17 changed files with 161 additions and 18 deletions

View file

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