Commit 78e7b7473b4c8137b0d2fbee723d48a52a254793
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
Merge branch 'fix_person_notifier' into stable
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
app/models/person_notifier.rb
... | ... | @@ -84,8 +84,8 @@ class PersonNotifier |
84 | 84 | |
85 | 85 | def content_summary(person, notifications, tasks) |
86 | 86 | if person.environment |
87 | - ActionMailer::Base.asset_host = person.environment.top_url | |
88 | - ActionMailer::Base.default_url_options[:host] = person.environment.top_url.gsub(/^(https?:)?/, '') | |
87 | + ActionMailer::Base.asset_host = person.environment.default_hostname | |
88 | + ActionMailer::Base.default_url_options[:host] = person.environment.default_hostname | |
89 | 89 | end |
90 | 90 | |
91 | 91 | @current_theme = 'default' | ... | ... |
test/unit/person_notifier_test.rb
... | ... | @@ -243,7 +243,7 @@ class PersonNotifierTest < ActiveSupport::TestCase |
243 | 243 | notify |
244 | 244 | sent = ActionMailer::Base.deliveries.last |
245 | 245 | assert_match /src="\/\/www.gravatar.com\/avatar.*"/, sent.body.to_s |
246 | - assert_match /src="http:\/\/colivre.net\/images\/icons-app\/community-icon.png.*"/, sent.body.to_s | |
246 | + assert_match /src="\/\/localhost\/images\/icons-app\/community-icon.png.*"/, sent.body.to_s | |
247 | 247 | end |
248 | 248 | |
249 | 249 | should 'list tasks in notification mail' do | ... | ... |