feat: Add enable templates column to config

This commit is contained in:
Faruk AYDIN
2025-03-04 12:20:23 +01:00
parent b6581cef10
commit 89e9a93872
7 changed files with 22 additions and 0 deletions

View File

@@ -6,6 +6,12 @@ exports[`Config model > jsonSchema should have correct validations 1`] = `
"createdAt": {
"type": "string",
},
"enableTemplates": {
"type": [
"boolean",
"null",
],
},
"id": {
"format": "uuid",
"type": "string",

View File

@@ -15,6 +15,7 @@ class Config extends Base {
palettePrimaryLight: { type: ['string', 'null'] },
palettePrimaryMain: { type: ['string', 'null'] },
title: { type: ['string', 'null'] },
enableTemplates: { type: ['boolean', 'null'] },
createdAt: { type: 'string' },
updatedAt: { type: 'string' },
},