activity_notification
activity_notification copied to clipboard
Integrated user activity notifications for Ruby on Rails
**Issue #, if available**: #166 ### Summary I added the required classes to `yaml_column_permitted_classes` on `ActiveRecord::Base`. With these changes all tests are green again. ### Other Information I'm not sure...
### Steps to reproduce A new security patch came out for Rails which changes how YAML serialized columns work. [See details here](https://discuss.rubyonrails.org/t/cve-2022-32224-possible-rce-escalation-bug-with-serialized-columns-in-active-record/81017). 1. Check out the repo 2. `bundle install`...
**Issue #161**: ### Summary Changed default association name between notification and subscriptions into `has_many :notification_subscriptions` from `has_many :subscriptions` in order to avoid name clashes. ### Other Information I tried to...
Hi, I have set up this gem in my project which is working perfectly, however, I am not able to add cc in emails. Any help will be appreciated.
I'm using this awesome gem and I have a notifiable model with `dependent_notifications: :destroy` enabled. The issue is that if the notifiable is created and shortly destroyed before the mailer...
**Issue #, if available**: https://github.com/simukappu/activity_notification/issues/140 ### Summary 1. Adding a new option to available_dependent_notifications_options called nullify_notifiable. 2. Adding a new option to add_destroy_dependency for that key we defined before. 3....
### Problem or use case Out target model has already associations with subscriptions, subscriber.rb uses same name to access notifications to which a target is subscribed to. This create an...
Hi, I was trying to use attachments in email, currently there's no direct support, but only overriding the mailer, right? Probably same workaround as #107 Thanks for the confirmation. I'll...
### Problem or use case The use case that explains this feature is for those applications which want to keep the track of notifications even if a notifiable has been...
Is there a current way to proceed to the sending of notifications of the different notifications in a sequenced way? For example a notification is created, if it is not...