We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10ed3fb commit db46575Copy full SHA for db46575
1 file changed
service/user_service.go
@@ -108,9 +108,12 @@ func IncompleteProfileReminder() {
108
}
109
110
111
+// insanely stupid override to make singlestore work
112
func GauchoRacingEmailReplace(email string) string {
113
if strings.HasSuffix(email, "@ucsb.edu") {
114
return strings.TrimSuffix(email, "@ucsb.edu") + "@gauchoracing.com"
115
+ } else if strings.HasSuffix(email, "@sbcc.edu") {
116
+ return strings.TrimSuffix(email, "@sbcc.edu") + "@gauchoracing.com"
117
} else if email == "ucsantabarbarasae@gmail.com" {
118
return "team@gauchoracing.com"
119
0 commit comments