FIX: when the user is promoted to TL2 invite to advance training (#10752)

Invitation to advanced training should be sent as a separate private message instead of hooking into TL2 promotion message.
This commit is contained in:
Krzysztof Kotlarek 2020-09-28 13:52:33 +10:00 committed by GitHub
parent e7c72cd1e4
commit 902fbd0b7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 5 deletions

View File

@ -24,10 +24,8 @@ en:
bio: "Hi, Im not a real person. Im a bot that can teach you about this site. To interact with me, send me a message or mention **`@%{discobot_username}`** anywhere."
tl2_promotion_message:
subject_template: "Congratulations on your trust level promotion!"
subject_template: "Now that youve been promoted, its time to learn about some advanced features!"
text_body_template: |
Now that youve been promoted, its time to learn about some advanced features!
Reply to this message with `@%{discobot_username} %{reset_trigger}` to find out more about what you can do.
timeout:

View File

@ -293,12 +293,15 @@ after_initialize do
discobot_username: ::DiscourseNarrativeBot::Base.new.discobot_username,
reset_trigger: "#{::DiscourseNarrativeBot::TrackSelector.reset_trigger} #{::DiscourseNarrativeBot::AdvancedUserNarrative.reset_trigger}")
recipient = args[:post].topic.topic_users.where.not(user_id: args[:post].user_id).last.user
PostCreator.create!(
::DiscourseNarrativeBot::Base.new.discobot_user,
title: I18n.t("discourse_narrative_bot.tl2_promotion_message.subject_template"),
raw: raw,
topic_id: args[:post].topic_id,
skip_validations: true
skip_validations: true,
archetype: Archetype.private_message,
target_usernames: recipient.username
)
end
end

View File

@ -732,4 +732,13 @@ RSpec.describe DiscourseNarrativeBot::AdvancedUserNarrative do
end
end
end
it 'invites to advanced training when user is promoted to TL2' do
recipient = Fabricate(:user)
expect {
DiscourseEvent.trigger(:system_message_sent, post: Post.last, message_type: 'tl2_promotion_message')
}.to change { Topic.count }
expect(Topic.last.title).to eq(I18n.t("discourse_narrative_bot.tl2_promotion_message.subject_template"))
expect(Topic.last.topic_users.map(&:user_id).sort).to eq([DiscourseNarrativeBot::Base.new.discobot_user.id, recipient.id])
end
end