mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
7 lines
162 B
Ruby
7 lines
162 B
Ruby
class Registrant::RegistrarsController < RegistrantController
|
|
|
|
def show
|
|
@registrar = Registrar.find(params[:id])
|
|
authorize! :read, @registrar
|
|
end
|
|
end
|