From cca78850cff39aaa2144c4a99459c6f2d5802824 Mon Sep 17 00:00:00 2001 From: Marvin Frommhold Date: Thu, 20 Aug 2026 18:15:13 +0200 Subject: [PATCH 1/2] redirect old scope pages to new scope standards Signed-off-by: Marvin Frommhold --- docusaurus.config.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index b8073c8188..b6d24e0f4b 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -71,10 +71,14 @@ const config = { '@docusaurus/plugin-client-redirects', { redirects: [ - // { - // to: '/community/collaboration', - // from: '/community/calendar' - // } + { + to: '/standards/scopes/scs-0501', + from: '/standards/scs-compatible-iaas' + }, + { + to: '/standards/scopes/scs-0502', + from: '/standards/scs-compatible-kaas' + } ], createRedirects(existingPath) { if (existingPath.includes('/community')) { From 3134e393a3afba7627fc43d3157be2ec6396c0b1 Mon Sep 17 00:00:00 2001 From: Marvin Frommhold Date: Fri, 21 Aug 2026 09:33:47 +0200 Subject: [PATCH 2/2] switch to and from Signed-off-by: Marvin Frommhold --- docusaurus.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index b6d24e0f4b..04b7618c07 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -72,12 +72,12 @@ const config = { { redirects: [ { - to: '/standards/scopes/scs-0501', - from: '/standards/scs-compatible-iaas' + from: '/standards/scs-compatible-iaas', + to: '/standards/scopes/scs-0501' }, { - to: '/standards/scopes/scs-0502', - from: '/standards/scs-compatible-kaas' + from: '/standards/scs-compatible-kaas', + to: '/standards/scopes/scs-0502' } ], createRedirects(existingPath) {