wg-backend-django/acer-env/lib/python3.10/site-packages/corsheaders/defaults.py

16 lines
294 B
Python
Raw Normal View History

2022-11-30 03:58:16 -05:00
from __future__ import annotations
default_headers = (
"accept",
"accept-encoding",
"authorization",
"content-type",
"dnt",
"origin",
"user-agent",
"x-csrftoken",
"x-requested-with",
)
default_methods = ("DELETE", "GET", "OPTIONS", "PATCH", "POST", "PUT")