2022-01-17 06:02:13 +00:00
|
|
|
package constants
|
|
|
|
|
|
|
|
const (
|
|
|
|
// SignupMethodBasicAuth is the basic_auth signup method
|
|
|
|
SignupMethodBasicAuth = "basic_auth"
|
|
|
|
// SignupMethodMagicLinkLogin is the magic_link_login signup method
|
|
|
|
SignupMethodMagicLinkLogin = "magic_link_login"
|
|
|
|
// SignupMethodGoogle is the google signup method
|
|
|
|
SignupMethodGoogle = "google"
|
|
|
|
// SignupMethodGithub is the github signup method
|
|
|
|
SignupMethodGithub = "github"
|
|
|
|
// SignupMethodFacebook is the facebook signup method
|
|
|
|
SignupMethodFacebook = "facebook"
|
2022-06-06 16:38:32 +00:00
|
|
|
// SignupMethodLinkedin is the linkedin signup method
|
|
|
|
SignupMethodLinkedIn = "linkedin"
|
2022-06-12 13:00:33 +00:00
|
|
|
// SignupMethodApple is the apple signup method
|
|
|
|
SignupMethodApple = "apple"
|
2022-01-17 06:02:13 +00:00
|
|
|
)
|