feat(cms): admin UI for external imprint/privacy URL

This commit is contained in:
Luca
2026-05-03 23:05:51 +02:00
parent 66423bb65e
commit a4e3d10fb0
4 changed files with 78 additions and 2 deletions
+4
View File
@@ -8,6 +8,8 @@ export interface CMSPage {
content_en: string;
content_de: string;
logo_url: string | null;
use_external_url: boolean;
external_url: string | null;
updated_at: string;
}
@@ -16,6 +18,8 @@ export interface PublicCMSPage {
content: string;
slug: string;
logo_url: string | null;
use_external_url: boolean;
external_url: string | null;
updated_at: string;
}