You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
392 B
24 lines
392 B
# frozen_string_literal: true |
|
|
|
class ApplicationPolicy |
|
attr_reader :current_account, :record |
|
|
|
def initialize(current_account, record) |
|
@current_account = current_account |
|
@record = record |
|
end |
|
|
|
private |
|
|
|
def current_user |
|
current_account&.user |
|
end |
|
|
|
def user_signed_in? |
|
!current_user.nil? |
|
end |
|
|
|
def role |
|
current_user&.role || UserRole.nobody |
|
end |
|
end
|
|
|