diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-26 14:35:09 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-11-07 12:14:02 +0100 |
commit | 506f3961ecf6616bac81f2c56d5e20d58ab435c6 (patch) | |
tree | 305f6032fc9e1762af4d2ed5d6fffd664feb1d48 /core/js | |
parent | dec52f69792d3a039188f6b3c4052db2b094388b (diff) | |
download | nextcloud-server-506f3961ecf6616bac81f2c56d5e20d58ab435c6.tar.gz nextcloud-server-506f3961ecf6616bac81f2c56d5e20d58ab435c6.zip |
Remove duplicated ReadOnlyConfig setup check
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/setupchecks.js | 6 | ||||
-rw-r--r-- | core/js/tests/specs/setupchecksSpec.js | 25 |
2 files changed, 0 insertions, 31 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index d45c54263b2..e94c334db66 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -180,12 +180,6 @@ var afterCall = function(data, statusText, xhr) { var messages = []; if (xhr.status === 200 && data) { - if (data.isReadOnlyConfig) { - messages.push({ - msg: t('core', 'The read-only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update.'), - type: OC.SetupChecks.MESSAGE_TYPE_INFO - }); - } if (!data.wasEmailTestSuccessful) { messages.push({ msg: t('core', 'You have not set or verified your email server configuration, yet. Please head over to the {mailSettingsStart}Basic settings{mailSettingsEnd} in order to set them. Afterwards, use the "Send email" button below the form to verify your settings.',) diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index ebd9c95aa02..982cb254daa 100644 --- a/core/js/tests/specs/setupchecksSpec.js +++ b/core/js/tests/specs/setupchecksSpec.js @@ -224,7 +224,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -293,7 +292,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -362,7 +360,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -427,7 +424,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -491,7 +487,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -555,7 +550,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: false, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -619,7 +613,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: false, hasDBFileLocking: false, @@ -683,7 +676,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: true, @@ -747,7 +739,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -813,7 +804,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -877,7 +867,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -943,7 +932,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1007,7 +995,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1091,7 +1078,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1162,7 +1148,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1226,7 +1211,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1290,7 +1274,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1358,7 +1341,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1423,7 +1405,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1485,7 +1466,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1550,7 +1530,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1615,7 +1594,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1679,7 +1657,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1743,7 +1720,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, @@ -1814,7 +1790,6 @@ describe('OC.SetupChecks tests', function() { }, JSON.stringify({ hasFileinfoInstalled: true, - isReadOnlyConfig: false, wasEmailTestSuccessful: true, hasWorkingFileLocking: true, hasDBFileLocking: false, |