feat: Add enable templates column to config
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user