2020-07-28 23:09:34 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Registration information for WebAuthn credentials
|
|
|
|
|
|
|
|
class WebauthnRegistration < ApplicationRecord
|
|
|
|
belongs_to :user
|
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
validates :credential_xid, :public_key, :counter, presence: true
|
|
|
|
validates :name, length: { minimum: 0, allow_nil: false }
|
2020-07-28 23:09:34 +05:30
|
|
|
validates :counter,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0, less_than_or_equal_to: 2**32 - 1 }
|
|
|
|
end
|