How can I delete or undelete topics?

This is risky, and I’d advise you wait until a Discourse Team member can provide better feedback, but something like this should work from the Rails console, so long as you know the topic ids you want to delete.

Topic.find(topic_id).destroy
2 Likes