added amqp sender

This commit is contained in:
Leo
2019-11-01 13:50:33 +01:00
parent 230dc33752
commit c31dc77b06
4 changed files with 157 additions and 39 deletions

View File

@@ -11,6 +11,18 @@ export class Amqp implements ICredentialType {
// The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way
// as node properties.
{
displayName: 'Hostname',
name: 'hostname',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Port',
name: 'port',
type: 'number' as NodePropertyTypes,
default: 5672,
},
{
displayName: 'User',
name: 'username',