From 64b179ab0e6a66c0f8edb72ab24ef28bbc2f9969 Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Mon, 24 Aug 2015 15:03:52 -0700 Subject: Fixes mm-1912 move get file info into its own web service call --- web/react/utils/client.jsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'web/react/utils/client.jsx') diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx index 754843697..13d6c3f54 100644 --- a/web/react/utils/client.jsx +++ b/web/react/utils/client.jsx @@ -831,6 +831,20 @@ module.exports.uploadFile = function(formData, success, error) { return request; }; +module.exports.getFileInfo = function(filename, success, error) { + $.ajax({ + url: '/api/v1/files/get_info' + filename, + dataType: 'json', + contentType: 'application/json', + type: 'GET', + success: success, + error: function onError(xhr, status, err) { + var e = handleError('getFileInfo', xhr, status, err); + error(e); + } + }); +}; + module.exports.getPublicLink = function(data, success, error) { $.ajax({ url: '/api/v1/files/get_public_link', -- cgit v1.2.3-1-g7c22