2021-07-18 03:55:20 +00:00
|
|
|
package enum
|
|
|
|
|
|
|
|
type VerificationType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
BasicAuthSignup VerificationType = iota
|
|
|
|
UpdateEmail
|
2021-07-18 09:56:29 +00:00
|
|
|
ForgotPassword
|
2021-07-18 03:55:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (d VerificationType) String() string {
|
|
|
|
return [...]string{
|
|
|
|
"basic_auth_signup",
|
|
|
|
"update_email",
|
2021-07-18 09:56:29 +00:00
|
|
|
"forgot_password",
|
2021-07-18 03:55:20 +00:00
|
|
|
}[d]
|
|
|
|
}
|