discourse/app/models/user_second_factor.rb

34 lines
748 B
Ruby
Raw Normal View History

class UserSecondFactor < ActiveRecord::Base
belongs_to :user
scope :backup_codes, -> do
where(method: UserSecondFactor.methods[:backup_codes], enabled: true)
end
def self.methods
@methods ||= Enum.new(
totp: 1,
2018-06-28 04:12:32 -04:00
backup_codes: 2,
)
end
2018-06-28 04:12:32 -04:00
2018-07-15 22:12:19 -04:00
def self.totp
where(method: self.methods[:totp]).first
end
end
# == Schema Information
#
# Table name: user_second_factors
#
# id :integer not null, primary key
# user_id :integer not null
2018-02-26 02:32:04 -05:00
# 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
#