authorizer/server/enum/verification.go
Lakhan Samani 367d02f86e Add forgot password resolver
Resolves #10
2021-07-18 15:26:29 +05:30

18 lines
257 B
Go

package enum
type VerificationType int
const (
BasicAuthSignup VerificationType = iota
UpdateEmail
ForgotPassword
)
func (d VerificationType) String() string {
return [...]string{
"basic_auth_signup",
"update_email",
"forgot_password",
}[d]
}