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:
parent
888c3d767d
commit
a790248c09
2 changed files with 3 additions and 4 deletions
|
@ -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(),
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue