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 end
def favorite_limit def favorite_limit
return nil
if is_privileged? if is_privileged?
5_000 20_000
elsif is_platinum? elsif is_platinum?
nil nil
else else
1_000 4_000
end end
end end
end end

View File

@@ -39,8 +39,8 @@
</tr> </tr>
<tr> <tr>
<td>Favorite Limit</td> <td>Favorite Limit</td>
<td>1,000</td> <td>4,000</td>
<td>5,000</td> <td>20,000</td>
<td>Unlimited</td> <td>Unlimited</td>
</tr> </tr>
<tr> <tr>