Skip to content
Snippets Groups Projects

bugfix: cors allow-header: accept

Merged Clément requested to merge fix/cors-allow-header-accept into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -136,7 +136,7 @@ class LDPViewSet(LDPViewSetGenerator):
response = super(LDPViewSet, self).dispatch(request, *args, **kwargs)
response["Access-Control-Allow-Origin"] = request.META.get('HTTP_ORIGIN')
response["Access-Control-Allow-Methods"] = "GET,POST,PUT,PATCH"
response["Access-Control-Allow-Headers"] = "authorization, Content-Type, if-match"
response["Access-Control-Allow-Headers"] = "authorization, Content-Type, if-match, accept"
response["Access-Control-Expose-Headers"] = "Location"
response["Access-Control-Allow-Credentials"] = 'true'
response["Accept-Post"] = "application/ld+json"
Loading