feat: add new organization trigger in GitHub

This commit is contained in:
Ali BARIN
2022-04-20 00:32:42 +02:00
committed by Ömer Faruk Aydın
parent 96ede071cf
commit 6bee6bafa8
4 changed files with 56 additions and 1 deletions

View File

@@ -13,7 +13,11 @@ import {
export default class Authentication implements IAuthentication {
appData: IApp;
connectionData: IJSONObject;
scopes: string[] = ['repo'];
scopes: string[] = [
'read:org',
'repo',
'user',
];
client: {
getWebFlowAuthorizationUrl: typeof getWebFlowAuthorizationUrl;
exchangeWebFlowCode: typeof exchangeWebFlowCode;