diff options
author | Vincent Petry <vincent@nextcloud.com> | 2023-01-10 10:41:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 10:41:04 +0100 |
commit | 4ecf4b46422b9245599651ccd9c4de7f943aa359 (patch) | |
tree | 1ac2f779df998bacdaf49b3e6cf7f5724c811cf7 /core | |
parent | 95520bc46790d4cdf498428a912657ef6a23bfa0 (diff) | |
parent | 42d9e087fb175a07588de41ebcd3a45b119e0199 (diff) | |
download | nextcloud-server-4ecf4b46422b9245599651ccd9c4de7f943aa359.tar.gz nextcloud-server-4ecf4b46422b9245599651ccd9c4de7f943aa359.zip |
Merge pull request #35980 from nextcloud/remove-legacy-ajax-list
Remove unused legacy ajax/list.php in files app
Diffstat (limited to 'core')
-rw-r--r-- | core/src/OC/dialogs.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/core/src/OC/dialogs.js b/core/src/OC/dialogs.js index 3e4344ac677..286f9848290 100644 --- a/core/src/OC/dialogs.js +++ b/core/src/OC/dialogs.js @@ -1116,19 +1116,6 @@ const Dialogs = { } return defer.promise() }, - _getFileList: function(dir, mimeType) { // this is only used by the spreedme app atm - if (typeof (mimeType) === 'string') { - mimeType = [mimeType] - } - - return $.getJSON( - OC.filePath('files', 'ajax', 'list.php'), - { - dir: dir, - mimetypes: JSON.stringify(mimeType) - } - ) - }, /** * fills the filepicker with files |