Skip to content

Add push notifications system

Sébastiaan Versteeg requested to merge feature/push-notifications into master

Closes #517 (closed)

Short description

Add basic push notifications system

Steps to use this feature

  1. Register a device, either using the admin or using the API
  2. Create a message, either using the admin or using code Message(title='title', body='body) an
  3. Click the send button or call send() on the object

API Description

  • POST /api/v1/devices/ -> Create a new push token registration
  • GET /api/v1/devices/<pk> -> Get push token registration
  • PUT /api/v1/devices/<pk> -> Update push token registration
  • DELETE /api/v1/devices/<pk> -> Remove push token registration
Edited by Sébastiaan Versteeg

Merge request reports