mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 11:15:10 +08:00
14 lines
269 B
Ruby
Vendored
14 lines
269 B
Ruby
Vendored
# 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.presence&.update_pinned(false)
|
|
end
|
|
end
|
|
end
|