disable fav limits for now

This commit is contained in:
albert
2013-02-20 00:39:00 -05:00
parent 794be44308
commit 19083fe88f
2 changed files with 6 additions and 4 deletions

View File

@@ -423,12 +423,14 @@ class User < ActiveRecord::Base
end
def favorite_limit
return nil
if is_privileged?
5_000
20_000
elsif is_platinum?
nil
else
1_000
4_000
end
end
end