Warn when registering with email containing uppercase characters

Closes #884 and #803

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2021-11-16 11:38:17 +01:00
parent be1664ec85
commit d291a83cc9
6 changed files with 125 additions and 29 deletions

5
js/src/types/apollo.ts Normal file
View File

@@ -0,0 +1,5 @@
import { GraphQLError } from "graphql/error/GraphQLError";
export class AbsintheGraphQLError extends GraphQLError {
readonly field: string | undefined;
}