django-gcm
django-gcm copied to clipboard
Support for Device groups
One functionality that is not currently supported by django-gcm is support for device groups. This would allow multiple devices to be registered on one notification key. Is this something that could be supported in the model of Django-gcm?
@salberin Check this out. Topic messaging
allows to register multiple devices to a single topic.
@bogdal Sorry, that's not the same. Device groups allow sending messages back to the other devices in the group. This allows for clearing of notifications on other devices in the same group, for example. That is exactly the functionality i'd like to use.
@salberin You can extend the Device
model and add e.g. foreign key to the group.