feat: Implement search tweet trigger step for twitter

This commit is contained in:
Faruk AYDIN
2022-03-12 14:27:15 +03:00
committed by Ömer Faruk Aydın
parent 3f7a888429
commit ab82134b88
4 changed files with 60 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ export default class Twitter implements IService {
parameters: IJSONObject
) {
this.authenticationClient = new Authentication(appData, connectionData);
this.triggers = new Triggers(connectionData);
this.triggers = new Triggers(connectionData, parameters);
this.actions = new Actions(connectionData, parameters);
}
}