How can you know which users are subscribed for notifications in a node?
I'm trying to make my own notification system for the backoffice but i'm having a hard time getting the list of users that are subscribed to a specific node.
I'm not sure if there is a core service to help you with this, but Umbraco sort's umbraco users who have registered for notifications (and the type of notifications) in this table: [umbracoUser2NodeNotify]
Have a look for an INotificationsService or something and see if that allows you to retrieve the data, else you might need to create your own service for reading the contents of that table.
Manage backoffice notifications programmatically
Hi,
How can you know which users are subscribed for notifications in a node?
I'm trying to make my own notification system for the backoffice but i'm having a hard time getting the list of users that are subscribed to a specific node.
Hi Asilva,
I'm not sure if there is a core service to help you with this, but Umbraco sort's umbraco users who have registered for notifications (and the type of notifications) in this table:
[umbracoUser2NodeNotify]
Have a look for an INotificationsService or something and see if that allows you to retrieve the data, else you might need to create your own service for reading the contents of that table.
Thanks
Nik
Hey Nik,
Thanks for the info. I'm writting my own service. Should've explored the umbraco database first. That helped a lot.
is working on a reply...