feat: Add config option to enable account and pod creation

This commit is contained in:
Joachim Van Herwegen 2023-10-11 18:11:48 +02:00
parent 851eafd1d1
commit 9321addafa
3 changed files with 19 additions and 1 deletions

View File

@ -11,7 +11,7 @@
"css:config/http/static/default.json",
"css:config/identity/access/public.json",
"css:config/identity/email/default.json",
"css:config/identity/handler/no-accounts.json",
"css:config/identity/handler/no-accounts-pods.json",
"css:config/identity/oidc/default.json",
"css:config/identity/ownership/token.json",
"css:config/identity/pod/static.json",

View File

@ -30,6 +30,7 @@ Contains everything needed for setting up the account management.
* *default*: All account features enabled.
* *disabled*: Completely disables everything account related.
* *no-accounts*: Disables the creation of new accounts.
* *no-accounts-pods*: Disables the creation of new accounts and creating new pods for existing accounts.
* *no-pods*: Disables the creation of new pods.
## OIDC

View File

@ -0,0 +1,17 @@
{
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^6.0.0/components/context.jsonld",
"import": [
"css:config/identity/handler/base/default.json",
"css:config/identity/handler/routing/default.json",
"css:config/identity/handler/storage/password.json",
"css:config/identity/handler/enable/client-credentials.json",
"css:config/identity/handler/enable/password.json",
"css:config/identity/handler/enable/webid.json"
],
"@graph": [
{
"comment": "Disables account creation and creating new pods."
}
]
}