Skip to content

Commit b193700

Browse files
fix(controller): Update CORS whitelisted request headers.
1 parent 0496839 commit b193700

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

controller/deis/settings.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,13 @@
165165
'content-type',
166166
'accept',
167167
'origin',
168-
'Authentication',
168+
'Authorization',
169+
'Host',
169170
)
170171

171172
CORS_EXPOSE_HEADERS = (
172-
'X_DEIS_VERSION',
173-
'X_DEIS_RELEASE',
173+
'X_DEIS_API_VERSION',
174+
'X_DEIS_PLATFORM_VERSION',
174175
)
175176

176177
REST_FRAMEWORK = {

0 commit comments

Comments
 (0)