I have several notifications that can be sent out from my Django
application for users
. These users are managed with the django.contrib.auth
app.
I need to keep track for each whether the user has specified he/she wants to get that notification.
Where should I save this information?
I was going to create my own custom table but I've seen perhaps I can save that information somewhere in the auth
module?