2022-06-29 16:54:00 +00:00
|
|
|
package constants
|
|
|
|
|
|
|
|
const (
|
|
|
|
// AuthRecipeMethodBasicAuth is the basic_auth auth method
|
|
|
|
AuthRecipeMethodBasicAuth = "basic_auth"
|
2022-12-21 17:44:24 +00:00
|
|
|
// AuthRecipeMethodMobileBasicAuth is the mobile basic_auth method, where user can signup using mobile number and password
|
|
|
|
AuthRecipeMethodMobileBasicAuth = "mobile_basic_auth"
|
2022-06-29 16:54:00 +00:00
|
|
|
// AuthRecipeMethodMagicLinkLogin is the magic_link_login auth method
|
|
|
|
AuthRecipeMethodMagicLinkLogin = "magic_link_login"
|
|
|
|
// AuthRecipeMethodGoogle is the google auth method
|
|
|
|
AuthRecipeMethodGoogle = "google"
|
|
|
|
// AuthRecipeMethodGithub is the github auth method
|
|
|
|
AuthRecipeMethodGithub = "github"
|
|
|
|
// AuthRecipeMethodFacebook is the facebook auth method
|
|
|
|
AuthRecipeMethodFacebook = "facebook"
|
|
|
|
// AuthRecipeMethodLinkedin is the linkedin auth method
|
|
|
|
AuthRecipeMethodLinkedIn = "linkedin"
|
|
|
|
// AuthRecipeMethodApple is the apple auth method
|
|
|
|
AuthRecipeMethodApple = "apple"
|
2022-08-13 07:05:00 +00:00
|
|
|
// AuthRecipeMethodTwitter is the twitter auth method
|
|
|
|
AuthRecipeMethodTwitter = "twitter"
|
2023-02-25 23:53:02 +00:00
|
|
|
// AuthRecipeMethodMicrosoft is the microsoft auth method
|
|
|
|
AuthRecipeMethodMicrosoft = "microsoft"
|
2022-06-29 16:54:00 +00:00
|
|
|
)
|