FEAT: Added HttpOnly to protect session

FEAT: VideoPage chat text now wraps around
This commit is contained in:
JustIceO7
2025-02-18 21:28:53 +00:00
parent c1dd21c0e2
commit 46645b74d7
2 changed files with 3 additions and 1 deletions

View File

@@ -33,6 +33,8 @@ def create_app():
app.config["PROPAGATE_EXCEPTIONS"] = True
app.config['GOOGLE_CLIENT_ID'] = getenv("GOOGLE_CLIENT_ID")
app.config['GOOGLE_CLIENT_SECRET'] = getenv("GOOGLE_CLIENT_SECRET")
app.config["SESSION_COOKIE_HTTPONLY"] = True
app.config.from_mapping(
CELERY=dict(