2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
module Jobs
|
|
|
|
|
2019-10-02 12:01:53 +08:00
|
|
|
class FeatureTopicUsers < ::Jobs::Base
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def execute(args)
|
2013-04-18 07:34:58 +08:00
|
|
|
topic_id = args[:topic_id]
|
|
|
|
raise Discourse::InvalidParameters.new(:topic_id) unless topic_id.present?
|
|
|
|
|
2014-05-06 21:41:59 +08:00
|
|
|
topic = Topic.find_by(id: topic_id)
|
2013-04-18 07:34:58 +08:00
|
|
|
|
2015-08-14 11:29:39 +08:00
|
|
|
# Topic may be hard deleted due to spam, no point complaining
|
|
|
|
# we would have to look at the topics table id sequence to find cases
|
|
|
|
# where this was called with an invalid id, no point really
|
|
|
|
return unless topic.present?
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-03-13 00:33:42 +08:00
|
|
|
topic.feature_topic_users(args)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|