summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-07-07 09:16:13 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-19 08:52:49 -0400
commitd78ebab108942058a100e0f607771c4addafb698 (patch)
treee15ea58c83979e003556e063460368f509a5ebd5 /web/react/utils
parent7004a348b59d5572e8c84eb1c8138bf45cbd0d3e (diff)
downloadchat-d78ebab108942058a100e0f607771c4addafb698.tar.gz
chat-d78ebab108942058a100e0f607771c4addafb698.tar.bz2
chat-d78ebab108942058a100e0f607771c4addafb698.zip
Implemention of slack import feature.
Diffstat (limited to 'web/react/utils')
-rw-r--r--web/react/utils/client.jsx16
-rw-r--r--web/react/utils/utils.jsx9
2 files changed, 25 insertions, 0 deletions
diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx
index da0b74081..f4c72ba46 100644
--- a/web/react/utils/client.jsx
+++ b/web/react/utils/client.jsx
@@ -862,6 +862,22 @@ module.exports.uploadProfileImage = function(imageData, success, error) {
});
};
+module.exports.importSlack = function(fileData, success, error) {
+ $.ajax({
+ url: "/api/v1/teams/import_team",
+ type: 'POST',
+ data: fileData,
+ cache: false,
+ contentType: false,
+ processData: false,
+ success: success,
+ error: function(xhr, status, err) {
+ e = handleError("importTeam", xhr, status, err);
+ error(e);
+ }
+ });
+}
+
module.exports.getStatuses = function(success, error) {
$.ajax({
url: "/api/v1/users/status",
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 618cc1557..f0a343513 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -982,3 +982,12 @@ module.exports.getUserIdFromChannelName = function(channel) {
return otherUserId;
};
+
+module.exports.importSlack = function(file, success, error) {
+ formData = new FormData();
+ formData.append('file', file, file.name);
+ formData.append('filesize', file.size);
+ formData.append('importFrom', 'slack');
+
+ client.importSlack(formData, success, error);
+};