internetee-registry/app/controllers/registrant/registrars_controller.rb
2015-12-11 17:33:28 +02:00

7 lines
162 B
Ruby

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