2022-03-06 05:47:40 +00:00
|
|
|
package model
|
2022-03-03 11:20:43 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
errFmtValueNil = "cannot value model type '%T' with value nil to driver.Value"
|
|
|
|
errFmtScanNil = "cannot scan model type '%T' from value nil: type doesn't support nil values"
|
|
|
|
errFmtScanInvalidType = "cannot scan model type '%T' from type '%T' with value '%v'"
|
|
|
|
errFmtScanInvalidTypeErr = "cannot scan model type '%T' from type '%T' with value '%v': %w"
|
|
|
|
)
|
2022-03-28 01:26:30 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
// SecondFactorMethodTOTP method using Time-Based One-Time Password applications like Google Authenticator.
|
|
|
|
SecondFactorMethodTOTP = "totp"
|
|
|
|
|
|
|
|
// SecondFactorMethodWebauthn method using Webauthn devices like YubiKey's.
|
|
|
|
SecondFactorMethodWebauthn = "webauthn"
|
|
|
|
|
|
|
|
// SecondFactorMethodDuo method using Duo application to receive push notifications.
|
|
|
|
SecondFactorMethodDuo = "mobile_push"
|
|
|
|
)
|