mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 12:53:32 +00:00
Upload corporate logo (#1314)
* feat: upload logo to project data --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me>
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user