[fix] Support non latin characters in schema names (#5063)
Fixes #4943 ## How was it tested? Local (front + /metadata) Unit tests for utils --------- Co-authored-by: Weiko <corentin@twenty.com>
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import { BadRequestException } from '@nestjs/common';
|
||||
|
||||
export class InvalidStringException extends BadRequestException {
|
||||
constructor(string: string) {
|
||||
const message = `String "${string}" is not valid`;
|
||||
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user