From bee22e5e5eb117fe629a92ca6d2580fea8aa91bb Mon Sep 17 00:00:00 2001 From: Fay Arnold Date: Wed, 7 Apr 2021 15:18:11 +0100 Subject: [PATCH] add webpush as installed_app --- djangoldp_webpushnotification/djangoldp_settings.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 djangoldp_webpushnotification/djangoldp_settings.py diff --git a/djangoldp_webpushnotification/djangoldp_settings.py b/djangoldp_webpushnotification/djangoldp_settings.py new file mode 100644 index 0000000..ad0f51a --- /dev/null +++ b/djangoldp_webpushnotification/djangoldp_settings.py @@ -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' +]