0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/app/jobs/regular/remove_banner.rb
2023-01-09 14:14:59 +00:00

14 lines
302 B
Ruby
Vendored

# frozen_string_literal: true
module Jobs
class RemoveBanner < ::Jobs::Base
def execute(args)
topic_id = args[:topic_id]
return unless topic_id.present?
topic = Topic.find_by(id: topic_id)
topic.remove_banner!(Discourse.system_user) if topic.present?
end
end
end