add webpush as installed_app

This commit is contained in:
Fay Arnold 2021-04-07 15:18:11 +01:00
parent b86872be24
commit bee22e5e5e
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
"""This module is loaded by DjangoLDP core during setup."""
# define an extra variable (should be prefix with package name)
MYPACKAGE_VAR = 'MY_DEFAULT_VAR'
# register an extra middleware
MIDDLEWARE = []
# register an extra installed app
INSTALLED_APPS = [
'webpush'
]