Rename profile page in registrar area to account

This commit is contained in:
Artur Beljajev 2019-05-15 13:44:36 +03:00
parent 5e0eca22cf
commit 207c2a704c
10 changed files with 10 additions and 10 deletions

View file

@ -0,0 +1,17 @@
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