diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-26 15:24:00 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-11-07 12:25:02 +0100 |
commit | ddd13a90d81e3198d06ac35b1dd4674a87e677ad (patch) | |
tree | ca5ff1c2c5248bffb6fe48218fb76dd6f0c12576 /core/js/setupchecks.js | |
parent | 6911dc30e6032d11dda3a45a679aec9cf5cf0ccf (diff) | |
download | nextcloud-server-ddd13a90d81e3198d06ac35b1dd4674a87e677ad.tar.gz nextcloud-server-ddd13a90d81e3198d06ac35b1dd4674a87e677ad.zip |
Migrate memcache 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.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index ba83ff93812..a334c0bd789 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -224,14 +224,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_ERROR }); } - if(!data.isMemcacheConfigured) { - messages.push({ - msg: t('core', 'No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the {linkstart}documentation ↗{linkend}.') - .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.memcacheDocs + '">') - .replace('{linkend}', '</a>'), - type: OC.SetupChecks.MESSAGE_TYPE_INFO - }); - } if(!data.isRandomnessSecure) { messages.push({ msg: t('core', 'No suitable source for randomness found by PHP which is highly discouraged for security reasons. Further information can be found in the {linkstart}documentation ↗{linkend}.') |