INFRA-3026 : Make email regex lenient (#396)

This commit is contained in:
Vijay Joshi
2024-03-14 11:03:39 +05:30
committed by GitHub
parent 9e97bc8d98
commit 04252b8248

View File

@@ -123,7 +123,7 @@ const (
)
const (
EMAIL_REGEX = `^[a-zA-Z]+\.[a-zA-Z]+@navi\.com$`
EMAIL_REGEX = `^[a-zA-Z0-9._+-]+@navi\.com$`
)
const (