mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06: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…
Reference in New Issue
Block a user