aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/setupchecks.js
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-12-12 16:53:13 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2024-01-08 17:37:14 +0100
commit3d4c4f19b4061be862ada764f453a3fdd035e1fb (patch)
treed05dda98044be979a6478c0b262792ddc5eec7c1 /core/js/setupchecks.js
parentadfe883102f69cf1f5a05a3d6bb3616e81a4609f (diff)
downloadnextcloud-server-3d4c4f19b4061be862ada764f453a3fdd035e1fb.tar.gz
nextcloud-server-3d4c4f19b4061be862ada764f453a3fdd035e1fb.zip
Migrate app dir owner check to SetupCheck API
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r--core/js/setupchecks.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index e85f32dae4a..4331e8e9cc9 100644
--- a/core/js/setupchecks.js
+++ b/core/js/setupchecks.js
@@ -271,21 +271,6 @@
})
}
- if(data.appDirsWithDifferentOwner && data.appDirsWithDifferentOwner.length > 0) {
- var appDirsWithDifferentOwner = data.appDirsWithDifferentOwner.reduce(
- function(appDirsWithDifferentOwner, directory) {
- return appDirsWithDifferentOwner + '<li>' + directory + '</li>';
- },
- ''
- );
- messages.push({
- msg: t('core', 'Some app directories are owned by a different user than the web server one. ' +
- 'This may be the case if apps have been installed manually. ' +
- 'Check the permissions of the following app directories:')
- + '<ul>' + appDirsWithDifferentOwner + '</ul>',
- type: OC.SetupChecks.MESSAGE_TYPE_WARNING
- });
- }
if (data.isMysqlUsedWithoutUTF8MB4) {
messages.push({
msg: t('core', 'MySQL is used as database but does not support 4-byte characters. To be able to handle 4-byte characters (like emojis) without issues in filenames or comments for example it is recommended to enable the 4-byte support in MySQL. For further details read {linkstart}the documentation page about this ↗{linkend}.')