Commit 14644d40 authored by Douwe Maan's avatar Douwe Maan

Do not validate CSRF token in API unless needed

parent 6fe736f2
......@@ -48,8 +48,8 @@ module API
end
before { header['X-Frame-Options'] = 'SAMEORIGIN' }
before { Gitlab::I18n.locale = current_user&.preferred_language }
# The locale is set to the current user's locale when `current_user` is loaded
after { Gitlab::I18n.use_default_locale }
rescue_from Gitlab::Access::AccessDeniedError do
......
......@@ -16,6 +16,8 @@ module API
@current_user = initial_current_user
Gitlab::I18n.locale = @current_user&.preferred_language
sudo!
@current_user
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment