changed upload limit to 1 second to allow new users to upload

This commit is contained in:
albert
2011-09-06 18:19:28 -04:00
parent 9a24e67125
commit 44647115ac

View File

@@ -256,7 +256,8 @@ class User < ActiveRecord::Base
def can_upload? def can_upload?
if is_contributor? if is_contributor?
true true
elsif created_at > 1.week.ago elsif created_at > 1.second.ago
# TODO: change this to 1 week
false false
else else
upload_limit > 0 upload_limit > 0