This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/jobs/regular/unpin_topic.rb
2015-07-29 16:34:21 +02:00

17 lines
297 B
Ruby

module Jobs
class UnpinTopic < Jobs::Base
def execute(args)
topic_id = args[:topic_id]
raise Discourse::InvalidParameters.new(:topic_id) unless topic_id.present?
topic = Topic.find_by(id: topic_id)
topic.update_pinned(false) if topic.present?
end
end
end