mirror of
https://ghfast.top/https://github.com/discourse/discourse-translator.git
synced 2026-07-17 11:56:50 +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
|