PLT-3005 Added confirmation screen to integrations (#3747)

Этот коммит содержится в:
David Lu
2016-08-15 11:10:31 -04:00
коммит произвёл Joram Wilander
родитель 5e6af8e970
Коммит ef33f3fcd1
11 изменённых файлов: 286 добавлений и 20 удалений

Просмотреть файл

@@ -1257,7 +1257,7 @@ export function addIncomingHook(hook, success, error) {
});
if (success) {
success();
success(data);
}
},
(err) => {
@@ -1280,7 +1280,7 @@ export function addOutgoingHook(hook, success, error) {
});
if (success) {
success();
success(data);
}
},
(err) => {
@@ -1374,7 +1374,7 @@ export function addCommand(command, success, error) {
});
if (success) {
success();
success(data);
}
},
(err) => {