mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
37 lines
1.0 KiB
Ruby
37 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_dependency 'email_validator'
|
|
|
|
class EmailChangeRequest < ActiveRecord::Base
|
|
belongs_to :old_email_token, class_name: 'EmailToken'
|
|
belongs_to :new_email_token, class_name: 'EmailToken'
|
|
belongs_to :user
|
|
|
|
validates :old_email, presence: true
|
|
validates :new_email, presence: true, format: { with: EmailValidator.email_regex }
|
|
|
|
def self.states
|
|
@states ||= Enum.new(authorizing_old: 1, authorizing_new: 2, complete: 3)
|
|
end
|
|
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: email_change_requests
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer not null
|
|
# old_email :string not null
|
|
# new_email :string not null
|
|
# old_email_token_id :integer
|
|
# new_email_token_id :integer
|
|
# change_state :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_email_change_requests_on_user_id (user_id)
|
|
#
|