mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
FIX: Update Discobot's UserProfile#bio_raw
when default locale changes (#26045)
Why this change? When a site's default locale is changed, Discobot's `UserProfile#bio_raw` is not changed and we have gotten reports about this. What does this change do? This change adds a `DiscourseEvent.on(:site_setting_changed)` callback which watches for changes to the `default_locale` site setting and updates Discobot's `UserProfile#bio_raw` when it changes.
This commit is contained in:

committed by
GitHub

parent
3491642f98
commit
7f7ef60a7b
@ -0,0 +1,20 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe SiteSetting do
|
||||
let(:narrative_bot) { ::DiscourseNarrativeBot::Base.new }
|
||||
let(:discobot_user) { narrative_bot.discobot_user }
|
||||
|
||||
before { SiteSetting.discourse_narrative_bot_enabled = true }
|
||||
|
||||
it "should update bot's `UserProfile#bio_raw` when `default_locale` site setting is changed" do
|
||||
expect(discobot_user.user_profile.bio_raw).to eq(
|
||||
I18n.with_locale(:en) { I18n.t("discourse_narrative_bot.bio") },
|
||||
)
|
||||
|
||||
SiteSetting.default_locale = "zh_CN"
|
||||
|
||||
expect(discobot_user.user_profile.reload.bio_raw).to eq(
|
||||
I18n.with_locale(:zh_CN) { I18n.t("discourse_narrative_bot.bio") },
|
||||
)
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user