Upload corporate logo (#1314)

* feat: upload logo to project data

---------

Co-authored-by: Carlos Valente <carlosvalente@pm.me>
This commit is contained in:
Ary
2024-11-17 14:55:20 -07:00
committed by GitHub
parent 8dd448db44
commit a6e1cbbbce
26 changed files with 289 additions and 13 deletions
@@ -42,6 +42,10 @@ export type MessageResponse = {
message: string;
};
export type ProjectLogoResponse = {
logoFilename: string;
};
export type ErrorResponse = MessageResponse;
export type AuthenticationStatus = 'authenticated' | 'not_authenticated' | 'pending';
@@ -5,4 +5,5 @@ export type ProjectData = {
publicInfo: string;
backstageUrl: string;
backstageInfo: string;
projectLogo: string | null;
};
+1
View File
@@ -52,6 +52,7 @@ export type {
MessageResponse,
RundownPaginated,
SessionStats,
ProjectLogoResponse,
} from './api/ontime-controller/BackendResponse.type.js';
export type { QuickStartData } from './api/db/db.type.js';
export type { RundownCached, NormalisedRundown } from './api/rundown-controller/BackendResponse.type.js';