internetee-registry/app/controllers/registrant/registrars_controller.rb
2015-12-06 20:47:34 +02:00

8 lines
184 B
Ruby

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