die tenant admin oauth authentifizierung wurde implementiert und funktioniert jetzt. Zudem wurde das marketing frontend dashboard implementiert.

This commit is contained in:
Codex Agent
2025-11-04 16:14:07 +01:00
parent 55c606bdd4
commit 92e64c361a
11 changed files with 407 additions and 156 deletions

View File

@@ -1,5 +1,13 @@
import { getDeviceId } from '../lib/device';
export interface EventBrandingPayload {
primary_color?: string | null;
secondary_color?: string | null;
background_color?: string | null;
font_family?: string | null;
logo_url?: string | null;
}
export interface EventData {
id: number;
slug: string;
@@ -11,8 +19,9 @@ export interface EventData {
type?: {
slug: string;
name: string;
icon: string;
icon: string | null;
};
branding?: EventBrandingPayload | null;
}
export interface PackageData {