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.
19 lines
358 B
19 lines
358 B
# frozen_string_literal: true
|
|
|
|
class ApplicationPolicy
|
|
attr_reader :current_account, :record
|
|
|
|
def initialize(current_account, record)
|
|
@current_account = current_account
|
|
@record = record
|
|
end
|
|
|
|
delegate :admin?, :moderator?, :staff?, to: :current_user, allow_nil: true
|
|
|
|
private
|
|
|
|
def current_user
|
|
current_account&.user
|
|
end
|
|
end
|