Track events for new comments too

This commit is contained in:
Kevin McConnell
2025-01-09 18:06:45 +00:00
parent 5a56c16029
commit a082eb75f5
5 changed files with 25 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
class Notifier::Commented < Notifier
private
def body
"#{creator.name} commented on: #{bubble.title}"
end
def recipients
bubble.bucket.users.without(creator)
end
end