mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #48586 from nextcloud/backport/48584/stable30
[stable30] fix(config): Mark more app configs sensitive
This commit is contained in:
commit
aff5d46e47
1 changed files with 9 additions and 0 deletions
|
|
@ -1490,6 +1490,12 @@ class AppConfig implements IAppConfig {
|
|||
'notify_push' => [
|
||||
'/^cookie$/',
|
||||
],
|
||||
'onlyoffice' => [
|
||||
'/^jwt_secret$/',
|
||||
],
|
||||
'passwords' => [
|
||||
'/^SSEv1ServerKey$/',
|
||||
],
|
||||
'serverinfo' => [
|
||||
'/^token$/',
|
||||
],
|
||||
|
|
@ -1521,6 +1527,9 @@ class AppConfig implements IAppConfig {
|
|||
'user_ldap' => [
|
||||
'/^(s..)?ldap_agent_password$/',
|
||||
],
|
||||
'twofactor_gateway' => [
|
||||
'/^.*token$/',
|
||||
],
|
||||
'user_saml' => [
|
||||
'/^idp-x509cert$/',
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue