From 3690a24f7f5bfd949b95ae1f401b0522d470c7d7 Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Mon, 24 Feb 2014 14:27:21 -0500 Subject: [PATCH] FIX: welcome topic should be uncategorized --- db/fixtures/999_topics.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/fixtures/999_topics.rb b/db/fixtures/999_topics.rb index c244e8a88..24ad1ee21 100644 --- a/db/fixtures/999_topics.rb +++ b/db/fixtures/999_topics.rb @@ -9,6 +9,6 @@ if Topic.where('id NOT IN (SELECT topic_id from categories where topic_id is not PostCreator.create(Discourse.system_user, raw: welcome, title: "Discourse Admin Quick Start Guide" ,skip_validations: true) welcome = File.read(Rails.root + 'docs/WELCOME-TO-DISCOURSE.md') - post = PostCreator.create(Discourse.system_user, category: 'Meta', raw: welcome, title: "Welcome to Discourse", skip_validations: true) + post = PostCreator.create(Discourse.system_user, raw: welcome, title: "Welcome to Discourse", skip_validations: true) post.topic.update_pinned(true) end