mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
8 lines
No EOL
173 B
Ruby
8 lines
No EOL
173 B
Ruby
class Registrant::ContactsController < RegistrantController
|
|
|
|
def show
|
|
@contact = Contact.find(params[:id])
|
|
authorize! :read, @contact
|
|
@contact.valid?
|
|
end
|
|
end |