21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-25 19:58:49 +02:00
chexpire/app/policies/application_policy.rb

54 lines
609 B
Ruby
Raw Normal View History

2018-05-29 13:09:42 +02:00
class ApplicationPolicy
attr_reader :user, :record
def initialize(user, record)
@user = user
@record = record
end
def index?
false
end
def show?
scope.where(id: record.id).exists?
end
def create?
false
end
def new?
create?
end
def update?
false
end
def edit?
update?
end
def destroy?
false
end
def scope
Pundit.policy_scope!(user, record.class)
end
class Scope
attr_reader :user, :scope
def initialize(user, scope)
@user = user
@scope = scope
end
def resolve
scope
end
end
end