users: raise favgroup limit to 10 for Members, unlimited for Gold.

This commit is contained in:
evazion
2022-04-24 21:37:31 -05:00
parent 7d650a5dae
commit 0d4e2059d7
2 changed files with 4 additions and 8 deletions

View File

@@ -464,14 +464,10 @@ class User < ApplicationRecord
end
def favorite_group_limit(level)
if level >= User::Levels::BUILDER
if level >= User::Levels::GOLD
Float::INFINITY
elsif level == User::Levels::PLATINUM
10
elsif level == User::Levels::GOLD
5
else
3
10
end
end