FIX: consider staged users mature (no spam checks) after 1 day

This commit is contained in:
Jeff Wong
2018-06-19 09:41:10 -07:00
parent 2f7a8ed86c
commit 2ff226e509
2 changed files with 4 additions and 4 deletions

View File

@@ -1075,7 +1075,7 @@ class User < ActiveRecord::Base
end
def mature_staged?
from_staged? && self.created_at && self.created_at < 1.week.ago
from_staged? && self.created_at && self.created_at < 1.day.ago
end
protected