This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-11-11 11:23:33 -08:00
|
|
|
# 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
|
2018-02-21 14:21:32 -08:00
|
|
|
|
|
|
|
def user_signed_in?
|
|
|
|
!current_user.nil?
|
|
|
|
end
|
2017-11-11 11:23:33 -08:00
|
|
|
end
|