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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
dcf4a2e8
Commit
dcf4a2e8
authored
Jul 26, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rescue only from ActionController::InvalidAuthenticityToken
parent
5a1f3df3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
lib/api/helpers.rb
lib/api/helpers.rb
+2
-2
lib/gitlab/request_forgery_protection.rb
lib/gitlab/request_forgery_protection.rb
+8
-0
No files found.
lib/api/helpers.rb
View file @
dcf4a2e8
...
...
@@ -336,9 +336,9 @@ module API
env
[
'warden'
]
end
# Check if
CSRF tokens are
valid.
# Check if
the request is GET/HEAD, or if CSRF token is
valid.
def
verified_request?
Gitlab
::
RequestForgeryProtection
.
call
(
env
)
rescue
false
Gitlab
::
RequestForgeryProtection
.
verified?
(
env
)
end
# Check the Rails session for valid authentication details
...
...
lib/gitlab/request_forgery_protection.rb
View file @
dcf4a2e8
...
...
@@ -19,5 +19,13 @@ module Gitlab
def
self
.
call
(
env
)
app
.
call
(
env
)
end
def
self
.
verified?
(
env
)
call
(
env
)
true
rescue
ActionController
::
InvalidAuthenticityToken
false
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