feat: Implement new message to a channel for slack w/o webhook

This commit is contained in:
Faruk AYDIN
2022-05-11 13:49:59 +02:00
parent a88d208cd6
commit c59bb85793
4 changed files with 122 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { IJSONObject } from '@automatisch/types';
import NewMessageToChannel from './triggers/new-message-to-channel';
export default class Triggers {
newMessageToChannel: NewMessageToChannel;
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
this.newMessageToChannel = new NewMessageToChannel(
connectionData,
parameters
);
}
}