feat: hope for the best

This commit is contained in:
s-prechtl 2026-03-24 10:00:02 +01:00
parent 1658396517
commit 58e70821dd

View file

@ -32,7 +32,14 @@ in
HTTP_PORT = 3000; HTTP_PORT = 3000;
}; };
# You can temporarily allow registration to create an admin user. # You can temporarily allow registration to create an admin user.
service.DISABLE_REGISTRATION = true; service = {
DISABLE_REGISTRATION = false;
ALLOW_ONLY_EXTERNAL_REGISTRATION = true; # only SSO, no local signups
};
oauth2_client = {
ENABLE_AUTO_REGISTRATION = true; # auto-create account on first SSO login
ACCOUNT_LINKING = "auto"; # auto-link if email already exists
};
# Add support for actions, based on act: https://github.com/nektos/act # Add support for actions, based on act: https://github.com/nektos/act
actions = { actions = {
ENABLED = true; ENABLED = true;