bogdal / django-gcm

Google Cloud Messaging Server in Django
https://django-gcm.readthedocs.org
BSD 2-Clause "Simplified" License
98 stars 42 forks source link

M2M field for users #9

Closed kalvish21 closed 10 years ago

kalvish21 commented 10 years ago

Shouldn't the AbstractDevice model have a M2M field mapping to users from the auth_user table? I believe this app should have a built in way of mapping to users.

bogdal commented 10 years ago

Mapping to the user model is optional, but if you need it, you can easily extend the device model. Check this out.

kalvish21 commented 10 years ago

Sounds good, thanks!