mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 13:44:17 +08:00
14 lines
283 B
Ruby
14 lines
283 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class UnpinTopic < ::Jobs::Base
|
|
def execute(args)
|
|
topic_id = args[:topic_id]
|
|
|
|
return unless topic_id.present?
|
|
|
|
topic = Topic.find_by(id: topic_id)
|
|
topic.update_pinned(false) if topic.present?
|
|
end
|
|
end
|
|
end
|