mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
8 lines
180 B
Ruby
8 lines
180 B
Ruby
class Registrant::RegistrantsController < RegistrantController
|
|
|
|
def show
|
|
@contact = Registrant.find(params[:id])
|
|
authorize! :read, @contact
|
|
@contact.valid?
|
|
end
|
|
end
|