EmailToken.active needs to check created_at too

This commit is contained in:
Neil Lalonde 2013-02-22 15:19:44 -05:00
parent c3ba7b9741
commit fc33c63585
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class EmailToken < ActiveRecord::Base
end
def self.active
where(expired: false)
where(expired: false).where('created_at > ?', valid_after)
end
def self.generate_token