Add rubocop to our build. (#5004)

This commit is contained in:
Guo Xiang Tan
2017-07-28 10:20:09 +09:00
committed by GitHub
parent ff4e295c4f
commit 5012d46cbd
871 changed files with 5480 additions and 6056 deletions

View File

@@ -4,15 +4,15 @@ class SpamHandler
return false if SiteSetting.max_new_accounts_per_registration_ip <= 0
tl2_plus_accounts_with_same_ip = User.where("trust_level >= ?", TrustLevel[2])
.where(ip_address: ip_address.to_s)
.count
.where(ip_address: ip_address.to_s)
.count
return false if tl2_plus_accounts_with_same_ip > 0
staff_user_ids = Group[:staff].user_ids - [-1]
staff_members_with_same_ip = User.where(id: staff_user_ids)
.where(ip_address: ip_address.to_s)
.count
.where(ip_address: ip_address.to_s)
.count
return false if staff_members_with_same_ip > 0
@@ -20,9 +20,9 @@ class SpamHandler
return false if ip_whitelisted
tl0_accounts_with_same_ip = User.unscoped
.where(trust_level: TrustLevel[0])
.where(ip_address: ip_address.to_s)
.count
.where(trust_level: TrustLevel[0])
.where(ip_address: ip_address.to_s)
.count
tl0_accounts_with_same_ip >= SiteSetting.max_new_accounts_per_registration_ip
end