bogdal / django-gcm

Google Cloud Messaging Server in Django

Home Page:https://django-gcm.readthedocs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for bulk push

mevinbabuc opened this issue · comments

It would be really awesome if it had support for bulk push. If its already implemented, where can I get docs on using it.

Thanks,
Mevin

Hi @mevinbabuc. django-gcm supports bulk push, but it looks like we don't have this in the documentation yet. The easiest way is to use send_message method of the device queryset. E.g:

Device.objects.all().send_message('my message')

Cheers!