0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 09:05:23 +08:00
discourse/app/jobs/onceoff/migrate_censored_words.rb
2023-01-09 14:14:59 +00:00

15 lines
411 B
Ruby
Vendored

# frozen_string_literal: true
module Jobs
class MigrateCensoredWords < ::Jobs::Onceoff
def execute_onceoff(args)
row = DB.query_single("SELECT value FROM site_settings WHERE name = 'censored_words'")
if row.count > 0
row
.first
.split("|")
.each { |word| WatchedWord.create(word: word, action: WatchedWord.actions[:censor]) }
end
end
end
end