Skip to content
This repository was archived by the owner on Nov 2, 2022. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a107ee2

Browse files
authoredFeb 6, 2020
Merge pull request #3 from rstular/dev
Revert manual CORS header in responses
2 parents c5efd51 + aa35f13 commit a107ee2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎functions.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,4 @@ def Get_RVT_Oseba(input_forms, action):
5454

5555

5656
def JSONResponse(input_dict):
57-
resp = Response(json.dumps(input_dict), status=input_dict["status_code"], mimetype="application/json")
58-
resp.headers["Access-Control-Allow-Origin"] = "*"
59-
return resp
57+
return Response(json.dumps(input_dict), status=input_dict["status_code"], mimetype="application/json")

0 commit comments

Comments
 (0)
This repository has been archived.