mirror of
https://github.com/discourse/discourse.git
synced 2025-03-20 13:38:09 +08:00
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
|
||||
|
||||
def self.active
|
||||
where(expired: false)
|
||||
where(expired: false).where('created_at > ?', valid_after)
|
||||
end
|
||||
|
||||
def self.generate_token
|
||||
|
Loading…
x
Reference in New Issue
Block a user