feat: Implement slack authentication

This commit is contained in:
Faruk AYDIN
2022-03-15 01:05:08 +03:00
committed by Ömer Faruk Aydın
parent 2218ffd790
commit f8c7b85682
7 changed files with 534 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
import Authentication from './authentication';
import {
IService,
IAuthentication,
IApp,
IJSONObject,
} from '@automatisch/types';
export default class Slack implements IService {
authenticationClient: IAuthentication;
constructor(appData: IApp, connectionData: IJSONObject) {
this.authenticationClient = new Authentication(appData, connectionData);
}
}