From 38c5beec2f514bd821c3e1c7e9247bbf4483c023 Mon Sep 17 00:00:00 2001 From: Athou Date: Wed, 12 Jul 2023 15:22:20 +0200 Subject: [PATCH] remove unused ApplicationSettings type in the client --- commafeed-client/src/app/types.ts | 35 ------------------------------- 1 file changed, 35 deletions(-) diff --git a/commafeed-client/src/app/types.ts b/commafeed-client/src/app/types.ts index a9f0ca8c..b7b7798f 100644 --- a/commafeed-client/src/app/types.ts +++ b/commafeed-client/src/app/types.ts @@ -3,39 +3,6 @@ export interface AddCategoryRequest { parentId?: string } -export interface ApplicationSettings { - publicUrl: string - allowRegistrations: boolean - createDemoAccount: boolean - googleAnalyticsTrackingCode?: string - googleAuthKey?: string - backgroundThreads: number - databaseUpdateThreads: number - smtpHost?: string - smtpPort?: number - smtpTls?: boolean - smtpUserName?: string - smtpPassword?: string - smtpFromAddress?: string - graphiteEnabled?: boolean - graphitePrefix?: string - graphiteHost?: string - graphitePort?: number - graphiteInterval?: number - heavyLoad: boolean - pubsubhubbub: boolean - imageProxyEnabled: boolean - queryTimeout: number - keepStatusDays: number - maxFeedCapacity: number - databaseCleanupBatchSize: number - refreshIntervalMinutes: number - cache: ApplicationSettingsCache - announcement?: string - userAgent?: string - unreadThreshold?: Date -} - export interface Category { id: string parentId?: string @@ -301,8 +268,6 @@ export interface UserModel { admin: boolean } -export type ApplicationSettingsCache = "NOOP" | "REDIS" - export type ReadingMode = "all" | "unread" export type ReadingOrder = "asc" | "desc"