Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
98116b76
Commit
98116b76
authored
Jan 29, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8642 from fchasen/master
Expose Link header in CORS Api calls
parents
a3c2873f
1f5ecf6c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
config/application.rb
config/application.rb
+4
-1
No files found.
config/application.rb
View file @
98116b76
...
@@ -70,7 +70,10 @@ module Gitlab
...
@@ -70,7 +70,10 @@ module Gitlab
config
.
middleware
.
use
Rack
::
Cors
do
config
.
middleware
.
use
Rack
::
Cors
do
allow
do
allow
do
origins
'*'
origins
'*'
resource
'/api/*'
,
headers: :any
,
methods:
[
:get
,
:post
,
:options
,
:put
,
:delete
]
resource
'/api/*'
,
headers: :any
,
methods:
[
:get
,
:post
,
:options
,
:put
,
:delete
],
expose:
[
'Link'
]
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment