From 8fbe0ba45d31af566d0555bfb797b8ede692e991 Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Mon, 7 Aug 2023 07:23:21 +0200 Subject: [PATCH] [CHANGE] Comment --- .../project_template/project_name/settings/local.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/allianceauth/project_template/project_name/settings/local.py b/allianceauth/project_template/project_name/settings/local.py index 3c978885..d83fd718 100644 --- a/allianceauth/project_template/project_name/settings/local.py +++ b/allianceauth/project_template/project_name/settings/local.py @@ -33,12 +33,9 @@ INSTALLED_APPS += [ # LOGGING['handlers']['extension_file']['level'] = 'DEBUG' # By default, apps are prevented from having public views for security reasons. -# If you want to allow specific apps to have public views, -# you can put their names here (same name as in INSTALLED_APPS). -# -# Note: +# To allow specific apps to have public views, add them to APPS_WITH_PUBLIC_VIEWS # » The format is the same as in INSTALLED_APPS -# » The app developer must explicitly allow public views for his app +# » The app developer must also explicitly allow public views for their app APPS_WITH_PUBLIC_VIEWS = [ ]