2017-12-22 09:18:12 +08:00
|
|
|
class UserSecondFactor < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2018-06-28 16:12:32 +08:00
|
|
|
scope :backup_codes, -> { where(method: 2, enabled: true) }
|
2018-02-20 14:44:51 +08:00
|
|
|
|
|
|
|
def self.methods
|
|
|
|
@methods ||= Enum.new(
|
|
|
|
totp: 1,
|
2018-06-28 16:12:32 +08:00
|
|
|
backup_codes: 2,
|
2018-02-20 14:44:51 +08:00
|
|
|
)
|
|
|
|
end
|
2018-06-28 16:12:32 +08:00
|
|
|
|
|
|
|
def self.totp
|
|
|
|
where(method: 1).first
|
|
|
|
end
|
|
|
|
|
2017-12-22 09:18:12 +08:00
|
|
|
end
|
2018-02-20 14:44:51 +08:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_second_factors
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
2018-02-26 15:32:04 +08:00
|
|
|
# method :integer not null
|
|
|
|
# data :string not null
|
2018-02-20 14:44:51 +08:00
|
|
|
# enabled :boolean default(FALSE), not null
|
|
|
|
# last_used :datetime
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|