Hello everyone,
in my app I do want to trigger a notification whenever a user creates a tasks inside a project.
I do have 3 collections in Firebase (no sub-collections):
1. projects
2. to do lists
3. tasks
A user can create a project and invite others to join the project.
All users emails incl. the project owners will be stored in a string list in the projects collection (lets call it alluserslist).
Inside the project users can create lists.
Inside each list users can create tasks
Now I want to send a notification whenever a user creates a tasks to everyone in alluserslist, which means:
everyone else on the string list alluserslist.
Can you help me how I can manage to do so?
Any ideas and help would be appreciated. :)
Thank you so much.
Mick