mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 04:59:22 -06:00
15 lines
321 B
Ruby
15 lines
321 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
|
||
|
class FixEncodedTopicSlugs < ::Jobs::Onceoff
|
||
|
def execute_onceoff(args)
|
||
|
return unless SiteSetting.slug_generation_method == 'encoded'
|
||
|
|
||
|
#Make all slugs nil and let the app regenerate with proper encoded ones
|
||
|
Topic.update_all(slug: nil)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|