mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
The posts rebake task should regenerate links too.
This commit is contained in:
@@ -3,11 +3,13 @@ task "posts:rebake" => :environment do
|
||||
RailsMultisite::ConnectionManagement.each_connection do |db|
|
||||
puts "Re baking post markdown for #{db} , changes are denoted with # , no change with ."
|
||||
i = 0
|
||||
Post.select([:id, :cooked, :raw, :topic_id]).each do |p|
|
||||
Post.select([:id, :user_id, :cooked, :raw, :topic_id, :post_number]).each do |p|
|
||||
i += 1
|
||||
cooked = p.cook(p.raw, topic_id: p.topic_id)
|
||||
if cooked != p.cooked
|
||||
Post.exec_sql('update posts set cooked = ? where id = ?', cooked, p.id)
|
||||
p.cooked = cooked
|
||||
TopicLink.extract_from(p)
|
||||
putc "#"
|
||||
else
|
||||
putc "."
|
||||
|
||||
Reference in New Issue
Block a user