()
| 24 | ) |
| 25 | |
| 26 | func (factorState FactorState) String() string { |
| 27 | switch factorState { |
| 28 | case FactorStateUnverified: |
| 29 | return "unverified" |
| 30 | case FactorStateVerified: |
| 31 | return "verified" |
| 32 | } |
| 33 | return "" |
| 34 | } |
| 35 | |
| 36 | const TOTP = "totp" |
| 37 | const Phone = "phone" |
no outgoing calls