mirror of
https://ghfast.top/https://github.com/discourse/discourse-translator.git
synced 2026-05-01 17:24:57 +08:00
11 lines
257 B
Ruby
11 lines
257 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseTranslator
|
|
module Extensions
|
|
module PostExtension
|
|
extend ActiveSupport::Concern
|
|
prepended { before_update :clear_translations, if: :raw_changed? }
|
|
include Translatable
|
|
end
|
|
end
|
|
end
|