discourse/app/services/tracked_topics_updater.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

20 lines
605 B
Ruby

# frozen_string_literal: true
class TrackedTopicsUpdater
def initialize(user_id, threshold)
@id = user_id
@threshold = threshold
end
def call
topic_users = TopicUser.where(notifications_reason_id: nil, user_id: @id)
if @threshold < 0
topic_users.update_all(notification_level: TopicUser.notification_levels[:regular])
else
topic_users.update_all(["notification_level = CASE WHEN total_msecs_viewed < ? THEN ? ELSE ? END",
@threshold, TopicUser.notification_levels[:regular], TopicUser.notification_levels[:tracking]])
end
end
end