From 8ae03c37181822617418d1fc372982b245ac0a9a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 3 Sep 2019 09:49:04 +0200 Subject: Add creation reason --- shared/extra-utils/server/config.ts | 1 + shared/models/server/about.model.ts | 1 + shared/models/server/custom-config.model.ts | 1 + 3 files changed, 3 insertions(+) (limited to 'shared') diff --git a/shared/extra-utils/server/config.ts b/shared/extra-utils/server/config.ts index 785421c98..66e0a008e 100644 --- a/shared/extra-utils/server/config.ts +++ b/shared/extra-utils/server/config.ts @@ -55,6 +55,7 @@ function updateCustomSubConfig (url: string, token: string, newConfig: DeepParti terms: 'my super terms', codeOfConduct: 'my super coc', + creationReason: 'my super creation reason', moderationInformation: 'my super moderation information', administrator: 'Kuja', maintenanceLifetime: 'forever', diff --git a/shared/models/server/about.model.ts b/shared/models/server/about.model.ts index e32ed26ee..bde4e0b50 100644 --- a/shared/models/server/about.model.ts +++ b/shared/models/server/about.model.ts @@ -7,6 +7,7 @@ export interface About { codeOfConduct: string + creationReason: string moderationInformation: string administrator: string maintenanceLifetime: string diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index 0c331a820..a7c2a3bab 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts @@ -8,6 +8,7 @@ export interface CustomConfig { terms: string codeOfConduct: string + creationReason: string moderationInformation: string administrator: string maintenanceLifetime: string -- cgit v1.2.3