summaryrefslogtreecommitdiff
path: root/lib/api
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-04-28 13:09:44 +0000
committerRémy Coutable <remy@rymai.me>2016-04-28 13:09:44 +0000
commit5addff7e6c89f2cad6f1af814e02ceecd2aed55b (patch)
treef861e07e9a634d7f761ee7189d0f4a9d78e345ad /lib/api
parentd4668825e4cb9c6c34b6f6530a4cb64d045b96d4 (diff)
parente99cf05875af4627e532fee77bd22574dde240d7 (diff)
downloadgitlab-ce-5addff7e6c89f2cad6f1af814e02ceecd2aed55b.tar.gz
Merge branch 'use-remote-ip-for-akismet' into 'master'
Use ActionDispatch Remote IP for Akismet checking Previously all remote IPs appeared at 127.0.0.1, which made Akismet not very useful. Using the ActionDispatch Remote IP (http://api.rubyonrails.org/classes/ActionDispatch/RemoteIp.html) should provide more reliable results. Closes #16629 See merge request !3961
Diffstat (limited to 'lib/api')
-rw-r--r--lib/api/issues.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/issues.rb b/lib/api/issues.rb
index 8aa08fd5acc..40928749481 100644
--- a/lib/api/issues.rb
+++ b/lib/api/issues.rb
@@ -24,8 +24,8 @@ module API
def create_spam_log(project, current_user, attrs)
params = attrs.merge({
- source_ip: env['REMOTE_ADDR'],
- user_agent: env['HTTP_USER_AGENT'],
+ source_ip: client_ip(env),
+ user_agent: user_agent(env),
noteable_type: 'Issue',
via_api: true
})