From 04f1a5c3f8c374d25aa5905ab642958a5b2fe76e Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 4 Feb 2014 13:21:43 +1100 Subject: [PATCH] FEATURE: added welcome to discourse topic --- db/fixtures/999_topics.rb | 8 ++++++-- docs/WELCOME-TO-DISCOURSE.md | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 docs/WELCOME-TO-DISCOURSE.md diff --git a/db/fixtures/999_topics.rb b/db/fixtures/999_topics.rb index 472b596ce..c244e8a88 100644 --- a/db/fixtures/999_topics.rb +++ b/db/fixtures/999_topics.rb @@ -3,8 +3,12 @@ Topic.reset_column_information Post.reset_column_information if Topic.where('id NOT IN (SELECT topic_id from categories where topic_id is not null)').count == 0 && !Rails.env.test? - # seed welcome topic - puts "Seeding welcome topic" + puts "Seeding welcome topics" + welcome = File.read(Rails.root + 'docs/ADMIN-QUICK-START-GUIDE.md') 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.topic.update_pinned(true) end diff --git a/docs/WELCOME-TO-DISCOURSE.md b/docs/WELCOME-TO-DISCOURSE.md new file mode 100644 index 000000000..9b4edcb6b --- /dev/null +++ b/docs/WELCOME-TO-DISCOURSE.md @@ -0,0 +1 @@ +This is a placeholder for the welcome topic, to be filled by @codinghorror