Updated follow limit for pro accounts to 50,000
This commit is contained in:
parent
cfda2c2562
commit
956c06ea59
|
@ -11,10 +11,12 @@ class FollowLimitValidator < ActiveModel::Validator
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
def limit_for_account(account)
|
def limit_for_account(account)
|
||||||
if account.following_count < LIMIT
|
adjusted_limit = account.is_pro ? 50000 : LIMIT
|
||||||
LIMIT
|
|
||||||
|
if account.following_count < adjusted_limit
|
||||||
|
adjusted_limit
|
||||||
else
|
else
|
||||||
[(account.followers_count * RATIO).round, LIMIT].max
|
[(account.followers_count * RATIO).round, adjusted_limit].max
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue