Add way to create a user notice via config.json (#9559)

This commit is contained in:
Michael Telatynski
2022-11-09 10:50:01 +00:00
committed by GitHub
parent 985119dcfe
commit 848adfdc10
2 changed files with 30 additions and 0 deletions
+6
View File
@@ -183,6 +183,12 @@ export interface IConfigOptions {
// length per voice chunk in seconds
chunk_length?: number;
};
user_notice?: {
title: string;
description: string;
show_once?: boolean;
};
}
export interface ISsoRedirectOptions {