internetee-registry/app/controllers/registrar/account_controller.rb
2019-05-15 13:44:36 +03:00

17 lines
275 B
Ruby

class Registrar
class AccountController < BaseController
skip_authorization_check
helper_method :linked_users
def show
@user = current_registrar_user
end
private
def linked_users
current_registrar_user.linked_users
end
end
end