docbrown/app/services/notifications/moderation.rb
Ben Halpern 208bbb3757
Improve mod roundrobin notification and internal tooling (#3855)
* Improve mod roundrobin notification and internal tooling

* Fix tests
2019-08-27 21:54:09 -04:00

10 lines
322 B
Ruby

module Notifications
module Moderation
MODERATORS_AVAILABILITY_DELAY = 22.hours
SUPPORTED = [Comment].freeze
def self.available_moderators
User.with_role(:trusted).where("last_moderation_notification < ?", MODERATORS_AVAILABILITY_DELAY.ago).where(mod_roundrobin_notifications: true)
end
end
end