This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-11-11 20:23:33 +01: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 23:21:32 +01:00
|
|
|
|
|
|
|
def user_signed_in?
|
|
|
|
!current_user.nil?
|
|
|
|
end
|
2017-11-11 20:23:33 +01:00
|
|
|
end
|