mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:46:12 +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
45 lines
1019 B
Ruby
45 lines
1019 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserSecondFactor < ActiveRecord::Base
|
|
belongs_to :user
|
|
|
|
scope :backup_codes, -> do
|
|
where(method: UserSecondFactor.methods[:backup_codes], enabled: true)
|
|
end
|
|
|
|
scope :totps, -> do
|
|
where(method: UserSecondFactor.methods[:totp], enabled: true)
|
|
end
|
|
|
|
def self.methods
|
|
@methods ||= Enum.new(
|
|
totp: 1,
|
|
backup_codes: 2,
|
|
)
|
|
end
|
|
|
|
def self.totp
|
|
where(method: self.methods[:totp]).first
|
|
end
|
|
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_second_factors
|
|
#
|
|
# id :bigint not null, primary key
|
|
# user_id :integer not null
|
|
# method :integer not null
|
|
# data :string not null
|
|
# enabled :boolean default(FALSE), not null
|
|
# last_used :datetime
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_second_factors_on_method_and_enabled (method,enabled)
|
|
# index_user_second_factors_on_user_id (user_id)
|
|
#
|