Updates to the admin to reflect new stream keys and admin password split

This commit is contained in:
Gabe Kangas
2022-11-28 20:22:26 -08:00
parent c4dc802941
commit d503c8a2e0
8 changed files with 205 additions and 17 deletions

View File

@@ -138,13 +138,19 @@ export interface Health {
representation: number;
}
export interface StreamKey {
key: string;
comment: string;
}
export interface ConfigDetails {
externalActions: ExternalAction[];
ffmpegPath: string;
instanceDetails: ConfigInstanceDetailsFields;
rtmpServerPort: string;
s3: S3Field;
streamKey: string;
streamKeys: StreamKey[];
adminPassword: string;
videoSettings: VideoSettingsFields;
webServerPort: string;
socketHostOverride: string;