mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:18:18 +08:00
9 lines
198 B
Ruby
9 lines
198 B
Ruby
|
module Jobs
|
||
|
class RebakeCustomEmojiPosts < Jobs::Base
|
||
|
def execute(args)
|
||
|
name = args[:name]
|
||
|
Post.where("raw LIKE '%:#{name}:%'").find_each { |post| post.rebake! }
|
||
|
end
|
||
|
end
|
||
|
end
|