mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
SECURITY: Support for confirm old as well as new email accounts
This commit is contained in:
parent
d62689fa76
commit
5771d2aee2
47 changed files with 454 additions and 114 deletions
9
app/models/email_change_request.rb
Normal file
9
app/models/email_change_request.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
class EmailChangeRequest < ActiveRecord::Base
|
||||
belongs_to :old_email_token, class_name: 'EmailToken'
|
||||
belongs_to :new_email_token, class_name: 'EmailToken'
|
||||
|
||||
def self.states
|
||||
@states ||= Enum.new(authorizing_old: 1, authorizing_new: 2, complete: 3)
|
||||
end
|
||||
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue