FEAT: Added HttpOnly to protect session
FEAT: VideoPage chat text now wraps around
This commit is contained in:
@@ -177,7 +177,7 @@ const ChatPanel: React.FC<ChatPanelProps> = ({
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
{/* Message content */}
|
{/* Message content */}
|
||||||
<div className="w-full text-[0.9em] mt-0.5em flex flex-col overflow-hidden">
|
<div className="w-full text-[0.9em] mt-0.5em flex flex-col overflow-hidden break-words">
|
||||||
{msg.message}
|
{msg.message}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -33,6 +33,8 @@ def create_app():
|
|||||||
app.config["PROPAGATE_EXCEPTIONS"] = True
|
app.config["PROPAGATE_EXCEPTIONS"] = True
|
||||||
app.config['GOOGLE_CLIENT_ID'] = getenv("GOOGLE_CLIENT_ID")
|
app.config['GOOGLE_CLIENT_ID'] = getenv("GOOGLE_CLIENT_ID")
|
||||||
app.config['GOOGLE_CLIENT_SECRET'] = getenv("GOOGLE_CLIENT_SECRET")
|
app.config['GOOGLE_CLIENT_SECRET'] = getenv("GOOGLE_CLIENT_SECRET")
|
||||||
|
app.config["SESSION_COOKIE_HTTPONLY"] = True
|
||||||
|
|
||||||
|
|
||||||
app.config.from_mapping(
|
app.config.from_mapping(
|
||||||
CELERY=dict(
|
CELERY=dict(
|
||||||
|
|||||||
Reference in New Issue
Block a user