From b9ffef87531ba7e3221a164e5203ad5b024b74db Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Wed, 1 Mar 2023 18:39:11 +1100 Subject: Remove test client and client patcher --- src/util/config/Config.ts | 2 -- src/util/config/types/ClientConfiguration.ts | 24 ------------------------ src/util/config/types/index.ts | 1 - 3 files changed, 27 deletions(-) delete mode 100644 src/util/config/types/ClientConfiguration.ts (limited to 'src/util') diff --git a/src/util/config/Config.ts b/src/util/config/Config.ts index de939e6b..f130e760 100644 --- a/src/util/config/Config.ts +++ b/src/util/config/Config.ts @@ -19,7 +19,6 @@ import { ApiConfiguration, CdnConfiguration, - ClientConfiguration, DefaultsConfiguration, EmailConfiguration, EndpointConfiguration, @@ -55,7 +54,6 @@ export class ConfigValue { rabbitmq: RabbitMQConfiguration = new RabbitMQConfiguration(); kafka: KafkaConfiguration = new KafkaConfiguration(); templates: TemplateConfiguration = new TemplateConfiguration(); - client: ClientConfiguration = new ClientConfiguration(); metrics: MetricsConfiguration = new MetricsConfiguration(); sentry: SentryConfiguration = new SentryConfiguration(); defaults: DefaultsConfiguration = new DefaultsConfiguration(); diff --git a/src/util/config/types/ClientConfiguration.ts b/src/util/config/types/ClientConfiguration.ts deleted file mode 100644 index 1f465e7f..00000000 --- a/src/util/config/types/ClientConfiguration.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. - Copyright (C) 2023 Fosscord and Fosscord Contributors - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . -*/ - -import { ClientReleaseConfiguration } from "."; - -export class ClientConfiguration { - releases: ClientReleaseConfiguration = new ClientReleaseConfiguration(); - useTestClient: boolean = false; -} diff --git a/src/util/config/types/index.ts b/src/util/config/types/index.ts index 510e19f8..cd3335e0 100644 --- a/src/util/config/types/index.ts +++ b/src/util/config/types/index.ts @@ -18,7 +18,6 @@ export * from "./ApiConfiguration"; export * from "./CdnConfiguration"; -export * from "./ClientConfiguration"; export * from "./DefaultsConfiguration"; export * from "./EmailConfiguration"; export * from "./EndpointConfiguration"; -- cgit 1.4.1