FIX: add locales for group mention PM variants (#14358)

This commit is contained in:
Arpit Jalan 2021-09-16 23:07:45 +05:30 committed by GitHub
parent 477bbc372e
commit d5424161f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View File

@ -3629,6 +3629,30 @@ en:
%{respond_instructions}
user_group_mentioned_pm:
title: "User Group Mentioned PM"
subject_template: "[%{email_prefix}] [PM] %{topic_title}"
text_body_template: |
%{header_instructions}
%{message}
%{context}
%{respond_instructions}
user_group_mentioned_pm_group:
title: "User Group Mentioned PM"
subject_template: "[%{email_prefix}] [PM] %{topic_title}"
text_body_template: |
%{header_instructions}
%{message}
%{context}
%{respond_instructions}
user_posted:
title: "User Posted"
subject_template: "[%{email_prefix}] %{topic_title}"

View File

@ -908,6 +908,20 @@ describe UserNotifications do
end
end
describe "group mentioned email" do
include_examples "notification email building" do
let(:notification_type) { :group_mentioned }
let(:post) { Fabricate(:private_message_post) }
let(:user) { post.user }
let(:mail_type) { "group_mentioned" }
let(:mail_template) { "user_notifications.user_#{notification_type}_pm" }
include_examples "respect for private_email"
include_examples "supports reply by email"
include_examples "sets user locale"
end
end
describe "user replied" do
include_examples "notification email building" do
let(:notification_type) { :replied }