
* fix: * removed fmt.Println * Feat: - Add OAuth for twitch --------- Co-authored-by: lemonScaletech <anand.panigrahi@scaletech.xyz> Co-authored-by: Anand Kumar Panigrahi <70533637+lemonScaletech@users.noreply.github.com>
29 lines
1.2 KiB
Go
29 lines
1.2 KiB
Go
package constants
|
|
|
|
const (
|
|
// AuthRecipeMethodBasicAuth is the basic_auth auth method
|
|
AuthRecipeMethodBasicAuth = "basic_auth"
|
|
// AuthRecipeMethodMobileBasicAuth is the mobile basic_auth method, where user can signup using mobile number and password
|
|
AuthRecipeMethodMobileBasicAuth = "mobile_basic_auth"
|
|
// AuthRecipeMethodMagicLinkLogin is the magic_link_login auth method
|
|
AuthRecipeMethodMagicLinkLogin = "magic_link_login"
|
|
// AuthRecipeMethodMobileOTP is the mobile_otp auth method
|
|
AuthRecipeMethodMobileOTP = "mobile_otp"
|
|
// 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"
|
|
// AuthRecipeMethodTwitter is the twitter auth method
|
|
AuthRecipeMethodTwitter = "twitter"
|
|
// AuthRecipeMethodMicrosoft is the microsoft auth method
|
|
AuthRecipeMethodMicrosoft = "microsoft"
|
|
// AuthRecipeMethodTwitch is the twitch auth method
|
|
AuthRecipeMethodTwitch = "twitch"
|
|
)
|