docs: remove todos

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
Ameya Shenoy 2021-02-13 11:46:12 +05:30
parent bf727fe8de
commit 92b45ee585
Signed by: codingcoffee
GPG key ID: F7D58AAC5DACF8D3

View file

@ -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(',')