From 23c3a919563e3edf639317117cf00bbd7775c70c Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 22 Jan 2023 01:13:03 +0100 Subject: [PATCH] Fixed double quotes in the Project.ts model --- src/models/Project.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/Project.ts b/src/models/Project.ts index ff84e95..c162f38 100644 --- a/src/models/Project.ts +++ b/src/models/Project.ts @@ -28,7 +28,7 @@ const ProjectSchema = new Schema({ }, validationKey: { type: String, - default: () => crypto.randomBytes(24).toString('hex') + default: () => crypto.randomBytes(24).toString("hex") }, defaults: { type: Object,