feat: Create send slack message action
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
fb7e679230
commit
5e1fc510ff
13
packages/backend/src/apps/slack/actions.ts
Normal file
13
packages/backend/src/apps/slack/actions.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import SendMessageToChannel from './actions/send-message-to-channel';
|
||||
import { IJSONObject } from '@automatisch/types';
|
||||
|
||||
export default class Actions {
|
||||
sendMessageToChannel: SendMessageToChannel;
|
||||
|
||||
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
|
||||
this.sendMessageToChannel = new SendMessageToChannel(
|
||||
connectionData,
|
||||
parameters
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user