fix: avoid create custom entities with the same name (#2791)

* fix: avoid create custom entities with the same name

* fix: use exact spelling

* fix: validate input as is
This commit is contained in:
Andrey Kud
2023-12-05 16:24:16 -05:00
committed by GitHub
parent 1616ea6c4f
commit 976e058328

View File

@ -1,4 +1,8 @@
import { Injectable, UnauthorizedException } from '@nestjs/common';
import {
ForbiddenException,
Injectable,
UnauthorizedException,
} from '@nestjs/common';
import {
BeforeCreateOneHook,
@ -7,6 +11,8 @@ import {
import { CreateObjectInput } from 'src/metadata/object-metadata/dtos/create-object.input';
const coreObjectNames = ['featureFlag', 'refreshToken', 'workspace', 'user'];
@Injectable()
export class BeforeCreateOneObject<T extends CreateObjectInput>
implements BeforeCreateOneHook<T, any>
@ -21,6 +27,14 @@ export class BeforeCreateOneObject<T extends CreateObjectInput>
throw new UnauthorizedException();
}
if (
coreObjectNames.includes(instance.input.nameSingular) ||
coreObjectNames.includes(instance.input.namePlural)
) {
throw new ForbiddenException(
'You cannot create an object with this name.',
);
}
instance.input.workspaceId = workspaceId;
return instance;
}