Skip to content

Instantly share code, notes, and snippets.

@gashcrumb
Created November 7, 2016 18:45
Show Gist options
  • Save gashcrumb/a04824fb5e839632e1fae5b5c6e597f6 to your computer and use it in GitHub Desktop.
Save gashcrumb/a04824fb5e839632e1fae5b5c6e597f6 to your computer and use it in GitHub Desktop.
getAll(): Observable<Connection[]> {
return this.forge.executeCommand({
commandId: 'ipaas-search-connectors',
data: {
inputList: [{ latest: true, filter: '' }]
}
})
.map((body) => {
return JSON.parse(body.message);
})
.catch(this.handleError);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment