mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FEATURE: added welcome to discourse topic
This commit is contained in:
parent
6c3c9345df
commit
04f1a5c3f8
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
1
docs/WELCOME-TO-DISCOURSE.md
Normal file
1
docs/WELCOME-TO-DISCOURSE.md
Normal file
|
@ -0,0 +1 @@
|
|||
This is a placeholder for the welcome topic, to be filled by @codinghorror
|
Loading…
Reference in a new issue