aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorMax <max@nextcloud.com>2023-07-27 11:35:18 +0200
committermax-nextcloud <max@nextcloud.com>2023-07-31 18:46:57 +0200
commitdb5e2f006593dd6740f0510ebe4d7103ae236a4f (patch)
tree752c2d1446fd9588bb61d2a70863a17ba295a5fb /apps/files/js
parent286cceebc3c572a70f3855df9f23b538a7528ab0 (diff)
downloadnextcloud-server-db5e2f006593dd6740f0510ebe4d7103ae236a4f.tar.gz
nextcloud-server-db5e2f006593dd6740f0510ebe4d7103ae236a4f.zip
fix(files): url used to retrive storage stats
Signed-off-by: Max <max@nextcloud.com>
Diffstat (limited to 'apps/files/js')
-rw-r--r--apps/files/js/files.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 1788ebe9d3f..486e437a8aa 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -25,7 +25,7 @@
state.call.abort();
}
state.dir = currentDir;
- state.call = $.getJSON(OC.generateUrl('apps/files/ajax/getstoragestats?dir={dir}', {
+ state.call = $.getJSON(OC.generateUrl('apps/files/api/v1/stats?dir={dir}', {
dir: currentDir,
}), function(response) {
state.dir = null;
@@ -39,7 +39,7 @@
},
_updateStorageQuotas: function() {
var state = Files.updateStorageQuotas;
- state.call = $.getJSON(OC.generateUrl('apps/files/ajax/getstoragestats'), function(response) {
+ state.call = $.getJSON(OC.generateUrl('apps/files/api/v1/stats'), function(response) {
Files.updateQuota(response);
});
},