2019-07-22 13:02:21 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class DeleteInaccessibleNotifications < ::Jobs::Base
|
2019-07-22 13:02:21 -04:00
|
|
|
def execute(args)
|
|
|
|
raise Discourse::InvalidParameters.new(:topic_id) if args[:topic_id].blank?
|
|
|
|
|
|
|
|
Notification
|
|
|
|
.where(topic_id: args[:topic_id])
|
|
|
|
.find_each do |notification|
|
|
|
|
next unless notification.user && notification.topic
|
|
|
|
|
|
|
|
notification.destroy if !Guardian.new(notification.user).can_see?(notification.topic)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|