Merge pull request #2584 from hmhealey/plt2054

PLT-2054 Add DisplayName and Description fields for integrations
This commit is contained in:
Corey Hulen
2016-04-04 08:15:13 -07:00
16 changed files with 204 additions and 40 deletions

View File

@@ -1182,10 +1182,10 @@ export function addIncomingHook(hook, success, error) {
}
},
(err) => {
dispatchError(err, 'addIncomingHook');
if (error) {
error(err);
} else {
dispatchError(err, 'addIncomingHook');
}
}
);
@@ -1205,10 +1205,10 @@ export function addOutgoingHook(hook, success, error) {
}
},
(err) => {
dispatchError(err, 'addOutgoingHook');
if (error) {
error(err);
} else {
dispatchError(err, 'addOutgoingHook');
}
}
);