mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
17 lines
255 B
Ruby
17 lines
255 B
Ruby
class Registrar
|
|
class ProfileController < BaseController
|
|
skip_authorization_check
|
|
|
|
helper_method :linked_users
|
|
|
|
def show
|
|
@user = current_user
|
|
end
|
|
|
|
private
|
|
|
|
def linked_users
|
|
current_user.linked_users
|
|
end
|
|
end
|
|
end
|