Kavita/UI/Web/src/app/admin/_models/server-settings.ts
Kupferhirn 11cb2cfb17
Allow changing listening ip addresses (#1713)
* Allow changing listening ip address

* Use Json serialize for appsettings.config saving

* BOM

* IP Address validation

* ip address reset

* ValidIpAddress regex
2023-02-12 08:37:46 -08:00

19 lines
495 B
TypeScript

export interface ServerSettings {
cacheDirectory: string;
taskScan: string;
taskBackup: string;
loggingLevel: string;
port: number;
ipAddresses: string;
allowStatCollection: boolean;
enableOpds: boolean;
baseUrl: string;
bookmarksDirectory: string;
emailServiceUrl: string;
convertBookmarkToWebP: boolean;
convertCoverToWebP: boolean;
totalBackups: number;
totalLogs: number;
enableFolderWatching: boolean;
hostName: string;
}