FIX: Use Topic#url to generate topic URL

This commit is contained in:
Dan Ungureanu 2020-05-18 13:08:03 +03:00
parent 88f0c37702
commit 6825dcd007
No known key found for this signature in database
GPG Key ID: 0AA2A00D6ACC8B84
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class AssignMailer < ActionMailer::Base
topic_title: topic.title,
assignee_name: assigned_by.username,
topic_excerpt: topic.excerpt,
topic_link: "#{Discourse.base_url}/t/#{topic.slug}"
topic_link: topic.url
}
build_email(to_address, opts)
end