fix(config): Mark more configs as sensitive

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/48948/head
Joas Schilling 2024-10-28 14:56:19 +07:00
parent 129be718e8
commit 5159a5f71d
No known key found for this signature in database
GPG Key ID: F72FA5B49FFA96B0
2 changed files with 10 additions and 0 deletions

@ -49,10 +49,16 @@ class AppConfig implements IAppConfig {
'/^key_pairs$/',
'/^local_gskey$/',
],
'call_summary_bot' => [
'/^secret_(.*)$/',
],
'external' => [
'/^sites$/',
'/^jwt_token_privkey_(.*)$/',
],
'globalsiteselector' => [
'/^gss\.jwt\.key$/',
],
'integration_discourse' => [
'/^private_key$/',
'/^public_key$/',
@ -153,6 +159,9 @@ class AppConfig implements IAppConfig {
'user_saml' => [
'/^idp-x509cert$/',
],
'whiteboard' => [
'/^jwt_secret_key$/',
],
];
/** @var Connection */

@ -125,6 +125,7 @@ class SystemConfig {
'onlyoffice' => [
'jwt_secret' => true,
],
'PASS' => true,
];
/** @var Config */