Fixed double quotes in the Project.ts model

This commit is contained in:
Mathias Wagner 2023-01-22 01:13:03 +01:00
parent bd5ffa9f46
commit 23c3a91956
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -28,7 +28,7 @@ const ProjectSchema = new Schema<IProject>({
},
validationKey: {
type: String,
default: () => crypto.randomBytes(24).toString('hex')
default: () => crypto.randomBytes(24).toString("hex")
},
defaults: {
type: Object,