diff --git a/backend/src/graphql/arg/UpdateUserInfosArgs.ts b/backend/src/graphql/arg/UpdateUserInfosArgs.ts index f2244c999..991680e29 100644 --- a/backend/src/graphql/arg/UpdateUserInfosArgs.ts +++ b/backend/src/graphql/arg/UpdateUserInfosArgs.ts @@ -1,8 +1,10 @@ + import { IsBoolean, IsInt, IsString } from 'class-validator' import { ArgsType, Field, InputType, Int } from 'type-graphql' import { Location } from '@model/Location' -import { isValidLocation } from '@validator/Location' + +import { isValidLocation } from '@/graphql/validator/Location' @InputType() @ArgsType() diff --git a/backend/tsconfig.json b/backend/tsconfig.json index d04b5aaab..28ddf1c38 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -53,7 +53,6 @@ "@enum/*": ["src/graphql/enum/*"], "@model/*": ["src/graphql/model/*"], "@union/*": ["src/graphql/union/*"], - "@validator/*": ["src/graphql/validator/*"], "@repository/*": ["src/typeorm/repository/*"], "@typeorm/*": ["src/typeorm/*"], "@test/*": ["test/*"],