changelog & isort

pull/4279/head
Will Hunt 2018-12-09 17:39:22 +00:00
parent dbf736ba66
commit 91206e09f2
2 changed files with 6 additions and 1 deletions

1
changelog.d/4279.bugfix Normal file
View File

@ -0,0 +1 @@
Send CORS headers for /media/config

View File

@ -18,7 +18,11 @@ from twisted.internet import defer
from twisted.web.resource import Resource
from twisted.web.server import NOT_DONE_YET
from synapse.http.server import respond_with_json, wrap_json_request_handler, set_cors_headers
from synapse.http.server import (
respond_with_json,
set_cors_headers,
wrap_json_request_handler,
)
class MediaConfigResource(Resource):