Implement file upload

This commit is contained in:
Johannes Zellner
2020-07-09 15:59:06 +02:00
parent afc90817cf
commit 049a488e08
3 changed files with 53 additions and 2 deletions

View File

@@ -2421,7 +2421,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
});
};
Client.prototype.filesUploadFile = function (appId, path, file, callback) {
Client.prototype.filesUpload = function (appId, path, file, callback) {
var fd = new FormData();
fd.append('file', file);