6

我有一个用户模型。我可以通过执行来检查用户是否是管理员a_user.try(:admin?)

我想定义一个命名范围,在最后 X 分钟内更新所有管理员用户。到目前为止,我有:

scope :recent, lambda { { :conditions => ['updated_at > ?', 5.minutes.ago] } }

这成功地在最后 5 分钟内更新了所有用户,但是如何合并管理员检查?我不知道如何调用try()范围内的用户实例...

4

3 回答 3

15

只是另一种可能性,可用于 Rails 4,

scope :recent, -> { where('updated_at > ?', 5.minutes.ago }
# If you were using rolify, you could do this
scope :non_admin, -> { without_role :admin }
# given the OP question,
scope :non_admin, -> { where(admin: false) }
scope :non_admin_recent, -> { non_admin.recent }

这只是另一种可能的格式,并考虑到使用 Rolify gem 的可能性。

于 2015-09-30T05:46:01.197 回答
9

如果 users 表中的 admin 列是布尔值,

scope :recent, lambda { :conditions => ['updated_at > ? AND admin != ?', 5.minutes.ago, true] }
于 2013-01-31T10:41:01.973 回答
6

而不是 using lambda,我发现使用类方法更简洁。

def self.recent
  where('updated_at > ?', 5.minutes.ago)
end

def self.admin
  where(admin: true)
end

def self.recent_and_admin
  recent.admin # or where('updated_at > ?', 5.minutes.ago).where(admin: true)
end
于 2013-01-31T12:53:06.830 回答