authorizer/server/enum/signUpMethod.go

22 lines
245 B
Go
Raw Normal View History

2021-07-12 18:22:16 +00:00
package enum
type SignupMethod int
const (
Basic SignupMethod = iota
MagicLink
Google
Github
Facebook
)
func (d SignupMethod) String() string {
return [...]string{
"basic",
"magiclink",
"google",
"github",
"facebook",
}[d]
}