Merge pull request #372 from Luca-Timo/beta

feat(cms): add external URL toggle for imprint and privacy pages
This commit is contained in:
Paul Nothaft
2026-05-04 00:10:44 +02:00
committed by GitHub
9 changed files with 198 additions and 23 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;
}