mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
15 lines
277 B
Ruby
15 lines
277 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class UnpinTopic < ::Jobs::Base
|
|
def execute(args)
|
|
topic_id = args[:topic_id]
|
|
|
|
return if topic_id.blank?
|
|
|
|
topic = Topic.find_by(id: topic_id)
|
|
topic.update_pinned(false) if topic.present?
|
|
end
|
|
end
|
|
end
|