Files
MeridynPharma-Backend/config/conf/corsheaders.py
behruz-dev f62b585e14 fix
2025-11-24 15:54:56 +05:00

16 lines
259 B
Python

CORS_ALLOW_ALL_ORIGINS = True
CORS_ALLOW_CREDENTIALS = True
CORS_ALLOW_METHODS = [
"DELETE",
"GET",
"OPTIONS",
"PATCH",
"POST",
"PUT",
]
CSRF_TRUSTED_ORIGINS = [
'https://api.meridynpharma.com',
'https://meridynpharma.com',
]