FEATURE: added welcome to discourse topic

This commit is contained in:
Sam 2014-02-04 13:21:43 +11:00
parent 6c3c9345df
commit 04f1a5c3f8
2 changed files with 7 additions and 2 deletions

View file

@ -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

View file

@ -0,0 +1 @@
This is a placeholder for the welcome topic, to be filled by @codinghorror