EmailToken.active needs to check created_at too
This commit is contained in:
parent
c3ba7b9741
commit
fc33c63585
|
@ -27,7 +27,7 @@ class EmailToken < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.active
|
def self.active
|
||||||
where(expired: false)
|
where(expired: false).where('created_at > ?', valid_after)
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.generate_token
|
def self.generate_token
|
||||||
|
|
Loading…
Reference in New Issue