Commit 3c4498380154564a02ee8b514c72089f2c3c9675
1 parent
10b1a6da
Exists in
federation_followers_backend
Adds email template for new_follower notificaiton
- Fixes person_notifier tests Signed-off-by: Gabriel Silva <gabriel93.silva@gmail.com>
Showing
2 changed files
with
2 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1 @@ |
1 | +<%= render :partial => 'default_activity', :locals => { :activity => activity } %> | ... | ... |
test/unit/person_notifier_test.rb
... | ... | @@ -178,6 +178,7 @@ class PersonNotifierTest < ActiveSupport::TestCase |
178 | 178 | update_product: -> { create Product, profile: @profile, product_category: create(ProductCategory, environment: Environment.default) }, |
179 | 179 | remove_product: -> { create Product, profile: @profile, product_category: create(ProductCategory, environment: Environment.default) }, |
180 | 180 | favorite_enterprise: -> { create FavoriteEnterprisePerson, enterprise: create(Enterprise), person: @member }, |
181 | + new_follower: -> { @member } | |
181 | 182 | } |
182 | 183 | |
183 | 184 | ActionTrackerConfig.verb_names.each do |verb| | ... | ... |