From 862ac4867bad57694b4a2b565b5aaf94b332c277 Mon Sep 17 00:00:00 2001 From: Joachim Van Herwegen Date: Wed, 11 Oct 2023 13:04:28 +0200 Subject: [PATCH] refactor: Move single IDP configurations into one folder --- .../default.json => base/adapter-factory.json} | 0 config/identity/handler/base/default.json | 6 +++--- .../identity/handler/{jwks/default.json => base/jwks.json} | 0 .../identity.json => base/provider-factory.json} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename config/identity/handler/{adapter-factory/default.json => base/adapter-factory.json} (100%) rename config/identity/handler/{jwks/default.json => base/jwks.json} (100%) rename config/identity/handler/{provider-factory/identity.json => base/provider-factory.json} (100%) diff --git a/config/identity/handler/adapter-factory/default.json b/config/identity/handler/base/adapter-factory.json similarity index 100% rename from config/identity/handler/adapter-factory/default.json rename to config/identity/handler/base/adapter-factory.json diff --git a/config/identity/handler/base/default.json b/config/identity/handler/base/default.json index d11f036e4..c044453cd 100644 --- a/config/identity/handler/base/default.json +++ b/config/identity/handler/base/default.json @@ -1,9 +1,9 @@ { "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^6.0.0/components/context.jsonld", "import": [ - "css:config/identity/handler/adapter-factory/default.json", - "css:config/identity/handler/jwks/default.json", - "css:config/identity/handler/provider-factory/identity.json", + "css:config/identity/handler/base/adapter-factory.json", + "css:config/identity/handler/base/jwks.json", + "css:config/identity/handler/base/provider-factory.json", "css:config/identity/handler/storage/default.json" ], "@graph": [ diff --git a/config/identity/handler/jwks/default.json b/config/identity/handler/base/jwks.json similarity index 100% rename from config/identity/handler/jwks/default.json rename to config/identity/handler/base/jwks.json diff --git a/config/identity/handler/provider-factory/identity.json b/config/identity/handler/base/provider-factory.json similarity index 100% rename from config/identity/handler/provider-factory/identity.json rename to config/identity/handler/base/provider-factory.json