feat: add gitlab authentication

This commit is contained in:
Ali BARIN
2022-05-04 00:38:31 +02:00
parent 2e2d371875
commit 39d82f17d7
9 changed files with 580 additions and 6 deletions

View File

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