如何拒绝 ActiveRecord 实体的默认范围

发布于 2024-12-27 01:54:12 字数 197 浏览 2 评论 0原文

我为 ActiveRecord 实体创建了几个范围,并且我想强制用户使用其中之一。如果没有选择命名范围,是否有办法抛出异常。 即,我想禁止这一点:

Entity.all

但允许这一点:

Entity.user(current_user)

谢谢

I've created few scopes for my ActiveRecord entity and I want to enforce user using one of it. Is there a way to, say, throw an exception, if no named scope is selected.
I.e., I want to dissallow this:

Entity.all

but allow this:

Entity.user(current_user)

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不乱于心 2025-01-03 01:54:12

覆盖 :all 范围

scope :all, #something like throwing an exception or calling other query

Override the :all scope

scope :all, #something like throwing an exception or calling other query
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文