fix: remove unreleased feature and ignore invalid keys in config

This commit is contained in:
Aarnav Tale 2025-04-02 10:16:34 -04:00
parent 2e383ddabe
commit 5e5c7c4c7a
No known key found for this signature in database
2 changed files with 1 additions and 5 deletions

View File

@ -75,7 +75,7 @@ export const headplaneConfig = type({
'oidc?': oidcConfig,
'integration?': integrationConfig,
headscale: headscaleConfig,
}).onDeepUndeclaredKey('reject');
}).onDeepUndeclaredKey('delete');
export const partialHeadplaneConfig = type({
debug: stringToBool,

View File

@ -105,7 +105,3 @@ oidc:
# This should point to your publicly accessibly URL
# for your Headplane instance with /admin/oidc/callback
redirect_uri: "http://localhost:3000/admin/oidc/callback"
# Stores the users and their permissions for Headplane
# This is a path to a JSON file, default is specified below.
user_storage_file: "/var/lib/headplane/users.json"