0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(core): remove name regex (#1109)

This commit is contained in:
Wang Sijie 2022-06-14 11:36:03 +08:00 committed by GitHub
parent 888c3d767d
commit a790248c09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -1,5 +1,5 @@
import { arbitraryObjectGuard, userInfoSelectFields } from '@logto/schemas';
import { nameRegEx, passwordRegEx, usernameRegEx } from '@logto/shared';
import { passwordRegEx, usernameRegEx } from '@logto/shared';
import { has } from '@silverhand/essentials';
import pick from 'lodash.pick';
import { InvalidInputError } from 'slonik';
@ -73,7 +73,7 @@ export default function adminUserRoutes<T extends AuthedRouter>(router: T) {
body: object({
username: string().regex(usernameRegEx),
password: string().regex(passwordRegEx),
name: string().regex(nameRegEx),
name: string(),
}),
}),
async (ctx, next) => {
@ -109,7 +109,7 @@ export default function adminUserRoutes<T extends AuthedRouter>(router: T) {
koaGuard({
params: object({ userId: string() }),
body: object({
name: string().regex(nameRegEx).optional(),
name: string().nullable().optional(),
avatar: string().url().nullable().optional(),
customData: arbitraryObjectGuard.optional(),
roleNames: string().array().optional(),

View file

@ -1,7 +1,6 @@
export const emailRegEx = /^\S+@\S+\.\S+$/;
export const phoneRegEx = /^\d+$/;
export const usernameRegEx = /^[A-Z_a-z-][\w-]*$/;
export const nameRegEx = /^.+$/;
export const passwordRegEx = /^.{6,}$/;
export const redirectUriRegEx = /^https?:\/\//;
export const hexColorRegEx = /^#[\da-f]{3}([\da-f]{3})?$/i;