Convert all existing topics in category to wikis

Olá matenauta :slight_smile:

Sim, seria possível usando a lógica aqui:
https://meta.discourse.org/t/administrative-bulk-operations/118349#move-all-topics-with-a-specific-tag-to-a-single-category-15

Exemplo (testado e funcionando):

TAG = Tag.find_by_name("design")
topics_id = Topic.joins(:topic_tags).where("topic_tags.tag_id = ?", tag.id).pluck(:id)
Post.where(topic_id: topics_id, post_number: 1).update_all(wiki: true)
2 curtidas