diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-12-07 07:32:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 07:32:39 +0100 |
commit | 666071f283d934f9a66e5395ed1945daf400a260 (patch) | |
tree | 2df74a681fa65cd4600fd73d8d4fac8ffa9ec0c2 /lib/private | |
parent | 71578e452f7640d08502583ac1afde4013790255 (diff) | |
parent | b229ac83bdd36afe4db4c196da295be74fc0a335 (diff) | |
download | nextcloud-server-666071f283d934f9a66e5395ed1945daf400a260.tar.gz nextcloud-server-666071f283d934f9a66e5395ed1945daf400a260.zip |
Merge pull request #42080 from nextcloud/backport/40714/stable26
[stable26] fix(systemreport): Mask onlyoffice secret as sensitive
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/SystemConfig.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index a18c4c2a138..c104f001809 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -118,6 +118,9 @@ class SystemConfig { ], ], ], + 'onlyoffice' => [ + 'jwt_secret' => true, + ], ]; /** @var Config */ |