From 92b45ee5851c0eaf6193aa86f61739b162fc8eb3 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Sat, 13 Feb 2021 11:46:12 +0530 Subject: [PATCH] docs: remove todos Signed-off-by: Ameya Shenoy --- backend/backend/settings.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/backend/settings.py b/backend/backend/settings.py index c95d179..e5808a0 100644 --- a/backend/backend/settings.py +++ b/backend/backend/settings.py @@ -20,7 +20,6 @@ BASE_DIR = Path(__file__).resolve().parent.parent # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/ -# TODO: remove this key # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = os.environ.get('SECRET_KEY') @@ -144,7 +143,6 @@ USE_L10N = True USE_TZ = True -# TODO: fix hardcoded cross allowed origins CORS_ALLOWED_ORIGINS = os.environ.get('CORS_ALLOWED_ORIGINS') if CORS_ALLOWED_ORIGINS: CORS_ALLOWED_ORIGINS = CORS_ALLOWED_ORIGINS.split(',')