17 lines
587 B
Go
17 lines
587 B
Go
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"
|
|
// SignupMethodLinkedin is the linkedin signup method
|
|
SignupMethodLinkedIn = "linkedin"
|
|
)
|