chore: remove gather from CRSF_TRUSTED_ORIGINS (#5657)

This commit is contained in:
Robert Sparks 2023-05-18 16:29:18 -05:00 committed by GitHub
parent f9322391dd
commit 34d714c4ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -315,7 +315,12 @@ UTILS_LOGGER_LEVELS: Dict[str, str] = {
X_FRAME_OPTIONS = 'SAMEORIGIN'
CSRF_TRUSTED_ORIGINS = ['ietf.org', '*.ietf.org', 'meetecho.com', '*.meetecho.com', 'gather.town', '*.gather.town', ]
CSRF_TRUSTED_ORIGINS = [
'ietf.org',
'*.ietf.org',
'meetecho.com',
'*.meetecho.com',
]
CSRF_COOKIE_SAMESITE = 'None'
CSRF_COOKIE_SECURE = True