https://github.com/grafana/grafana
Revision 121631daaefec1b3409685e6f2d876eedcf7a636 authored by Jo on 14 November 2022, 12:11:26 UTC, committed by GitHub on 14 November 2022, 12:11:26 UTC
* fix: email and username trimming and invitation validation

* Trim leading and trailing whitespaces from email and username on signup

* Check whether the provided email address is the same as where the invitation sent

* Align tests

Co-authored-by: Mihaly Gyongyosi <mgyongyosi@users.noreply.github.com>
1 parent 1fddd9a
Raw File
Tip revision: 121631daaefec1b3409685e6f2d876eedcf7a636 authored by Jo on 14 November 2022, 12:11:26 UTC
Fix: Email and username trimming and invitation validation (#58442)
Tip revision: 121631d
tsconfig.json
{
  "compilerOptions": {
    "jsx": "react",
    "baseUrl": "public/",
    "outDir": "public/dist",
    "rootDirs": ["public/"],
    "allowJs": true,
    "strict": true,
    "resolveJsonModule": true,
    "useUnknownInCatchVariables": true,
    "incremental": true,
    "tsBuildInfoFile": "./tsconfig.tsbuildinfo"
  },
  "extends": "@grafana/tsconfig/base.json",
  "include": [
    "public/app/**/*.ts*",
    "public/e2e-test/**/*.ts",
    "public/test/**/*.ts",
    "public/vendor/**/*.ts",
    "packages/jaeger-ui-components/typings",
    "packages/grafana-data/typings",
    "packages/grafana-ui/src/types"
  ]
}
back to top