Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add max length check for email (supabase#1508)
## What kind of change does this PR introduce? feature: add max length check for email. ## What is the current behavior? Currently, email length is only checked on db side. Email has max length 255 characters, when user sends (>255 characters) large email to `/admin/users` endpoint, db is doing unnecessary queries.  ## What is the new behavior? Code returns early if user enters large email. There will be no db queries. 
- Loading branch information