fix: rename magic_link_login enum

This commit is contained in:
Lakhan Samani
2021-12-24 07:20:22 +05:30
parent 1b3f931074
commit 7ee4715af2
4 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ type SignupMethod int
const (
BasicAuth SignupMethod = iota
MagicLink
MagicLinkLogin
Google
Github
Facebook
@@ -13,7 +13,7 @@ const (
func (d SignupMethod) String() string {
return [...]string{
"basic_auth",
"magic_link",
"magic_link_login",
"google",
"github",
"facebook",