dmails: fix bug with parsing wiki links in email notifications.
Bug: sending a dmail containing a wiki link (ex: [[tagme]]) failed when the recipient had email notifications turned on. Cause: wiki links inside email notifications use absolute urls, which the dtext postprocessor didn't parse correctly.
This commit is contained in:
@@ -153,9 +153,9 @@ class DmailTest < ActiveSupport::TestCase
|
||||
end
|
||||
|
||||
should "send an email if the user wants it" do
|
||||
user = FactoryBot.create(:user, :receive_email_notifications => true)
|
||||
user = create(:user, receive_email_notifications: true)
|
||||
assert_difference("ActionMailer::Base.deliveries.size", 1) do
|
||||
FactoryBot.create(:dmail, :to => user, :owner => user)
|
||||
create(:dmail, to: user, owner: user, body: "test [[tagme]]")
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user