2017-12-21 20:18:12 -05:00
|
|
|
class UserSecondFactor < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2018-02-20 01:44:51 -05:00
|
|
|
|
|
|
|
def self.methods
|
|
|
|
@methods ||= Enum.new(
|
|
|
|
totp: 1,
|
|
|
|
)
|
|
|
|
end
|
2017-12-21 20:18:12 -05:00
|
|
|
end
|
2018-02-20 01:44:51 -05:00
|
|
|
|
|
|
|
# == 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
|
2018-02-20 01:44:51 -05:00
|
|
|
# enabled :boolean default(FALSE), not null
|
|
|
|
# last_used :datetime
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|