如何在我的Pundit策略中使用模型中定义的范围?
在我的模型中,我有一个范围:
scope :published, ->{ where.not(published_at: nil )}
在我的权威政策中,
class CompanyPolicy < ApplicationPolicy
def index?
true
end
def create?
user.present?
end
def new?
true
end
def show?
true
end
def update?
user.present? && user == record.user
end
end
如何在Pundit政策中使用我的范围?我想仅在“发布”时显示它,类似的东西目前不起作用:
class CompanyPolicy < ApplicationPolicy
def show
record.published?
end
end
答案 0 :(得分:0)
范围是Class方法,您不能在实例上调用它们。
您还必须定义一个published?
实例方法:
def published?
published_at.present?
end
如果您询问记录是否存在于给定范围内,则可以使用该范围:
User.published.exists?(user.id)
并且如果范围包括用户ID,它将返回true,但是我不建议这样做,它需要对数据库进行额外的查询才能从已经拥有的用户实例中获得一些信息。