changed editor to OpenSource grapesJS

This commit is contained in:
Julian Krauser 2024-12-22 17:28:56 +01:00
parent 78a9d206c3
commit 395a6439eb
9 changed files with 208 additions and 209 deletions

View file

@ -3,9 +3,7 @@ export interface TemplateViewModel {
template: string;
description: string | null;
design: object;
headerHTML: string;
bodyHTML: string;
footerHTML: string;
html: string;
}
export interface CreateTemplateViewModel {
@ -18,7 +16,5 @@ export interface UpdateTemplateViewModel {
template: string;
description: string | null;
design: object;
headerHTML: string;
bodyHTML: string;
footerHTML: string;
html: string;
}