users: raise page limit for Gold users from 2000 to 5000.

Gold now has the same page limit as Platinum.
This commit is contained in:
evazion
2022-05-05 16:42:17 -05:00
parent 34038d71ae
commit d12485f1c8

View File

@@ -429,10 +429,8 @@ class User < ApplicationRecord
end
def page_limit(level)
if level >= User::Levels::PLATINUM
if level >= User::Levels::GOLD
5000
elsif level == User::Levels::GOLD
2000
else
1000
end