oncall-engine/engine/apps/api
Joey Orlando 5967d5af63
remove apns + fix django-push-notifications migrations (#984)
- removes APNS support
- changes the `django-push-notification` library from the `iskhakov`
fork to the [`grafana`
fork](https://github.com/grafana/django-push-notifications). This new
fork basically just patches an issue which affected the database
migrations of this django app (previously the library would not respect
the `USER_MODEL` setting when creating its tables and would instead
reference the `auth_user` table.. which we don't want)
- add `--no-cache` flag to the `make build` command

**NOTE**
A migration should be applied as follows:
```bash
# remove the four push_notifications tables, which have improper foreign key references
python manage.py migrate push_notifications zero

# recreate the tables with the proper foreign key references
python manage.py migrate
```
2022-12-13 13:00:59 +01:00
..
permissions Update SCHEDULES_WRITE fallback role to EDITOR 2022-12-09 12:56:35 -03:00
serializers centralize timezone validation + add serializer validation for on call shifts and schedules (#924) 2022-12-01 14:13:39 +01:00
tests Update SCHEDULES_WRITE fallback role to EDITOR 2022-12-09 12:56:35 -03:00
throttlers World, meet OnCall! 2022-06-03 08:09:47 -06:00
views remove apns + fix django-push-notifications migrations (#984) 2022-12-13 13:00:59 +01:00
__init__.py World, meet OnCall! 2022-06-03 08:09:47 -06:00
response_renderers.py World, meet OnCall! 2022-06-03 08:09:47 -06:00
urls.py remove apns + fix django-push-notifications migrations (#984) 2022-12-13 13:00:59 +01:00