fix: cache version information for 3 hours

This commit is contained in:
Elias Schneider
2024-10-23 11:48:46 +02:00
parent 2092007752
commit 29d632c151
3 changed files with 30 additions and 11 deletions

View File

@@ -16,3 +16,9 @@ export type AppConfigRawResponse = {
type: string;
value: string;
}[];
export type AppVersionInformation = {
isUpToDate: boolean;
newestVersion: string;
currentVersion: string;
};