Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
djangoldp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
djangoldp-packages
djangoldp
Merge requests
!60
bugfix: cors allow-header: accept
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
bugfix: cors allow-header: accept
fix/cors-allow-header-accept
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Clément
requested to merge
fix/cors-allow-header-accept
into
master
5 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
LDFlex need it to work
Edited
5 years ago
by
Clément
0
0
Merge request reports
Viewing commit
af6cd632
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
af6cd632
bugfix: cors allow-header: accept
· af6cd632
Clément
authored
5 years ago
djangoldp/views.py
+
1
−
1
Options
@@ -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