From c1f4334b8142aa75451f0d15063c8849323f5041 Mon Sep 17 00:00:00 2001 From: davwas Date: Mon, 29 Jan 2024 11:30:24 +0100 Subject: [PATCH] Revert "BC-4121 - Replace old with new school adminstration page (#4288)" This reverts commit 58b5367340cbae8727a410285ec75927e43d1acd. --- config/default.schema.json | 7 ++++++- src/services/config/publicAppConfigService.js | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/config/default.schema.json b/config/default.schema.json index 2379c4b520d..b9e85e4287b 100644 --- a/config/default.schema.json +++ b/config/default.schema.json @@ -729,7 +729,7 @@ }, "FEATURE_SCHOOL_TERMS_OF_USE_ENABLED": { "type": "boolean", - "default": true, + "default": false, "description": "Enables uploading of school specific Terms of Use on new admin page." }, "ROCKETCHAT_SERVICE_ENABLED": { @@ -1335,6 +1335,11 @@ "ALLOWED_API_KEYS": "" } }, + "FEATURE_NEW_SCHOOL_ADMINISTRATION_PAGE_AS_DEFAULT_ENABLED": { + "type": "boolean", + "default": false, + "description": "Makes the new school administration page the default page" + }, "FEATURE_CTL_TOOLS_TAB_ENABLED": { "type": "boolean", "default": false, diff --git a/src/services/config/publicAppConfigService.js b/src/services/config/publicAppConfigService.js index 623667276a0..23133e879e1 100644 --- a/src/services/config/publicAppConfigService.js +++ b/src/services/config/publicAppConfigService.js @@ -55,6 +55,7 @@ const exposedVars = [ 'FEATURE_IMSCC_COURSE_EXPORT_ENABLED', 'FEATURE_SCHOOL_SANIS_USER_MIGRATION_ENABLED', 'FEATURE_ALLOW_INSECURE_LDAP_URL_ENABLED', + 'FEATURE_NEW_SCHOOL_ADMINISTRATION_PAGE_AS_DEFAULT_ENABLED', 'MIGRATION_END_GRACE_PERIOD_MS', 'FEATURE_CTL_TOOLS_TAB_ENABLED', 'FEATURE_LTI_TOOLS_TAB_ENABLED',