ToolJet/server/ee/services/oauth/index.ts
Midhun G S 5000f745b1
Github OAuth integration (#1837)
* Initial commit

* git auth

* git sso

* Git sso

* Git Oauth rebase

* review comments

* added email validation

* improvement

* Package lock revert

* E2E test case fix

* fix data population in migration

* Supress initial error thrown by google

* Fix

* e2e test cases

* added e2e test cases

* isValidDomain improvement

* e2e test cases fix

Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com>
2022-01-27 15:21:17 +05:30

5 lines
227 B
TypeScript

import { OauthService } from './oauth.service';
import { GoogleOAuthService } from './google_oauth.service';
import { GitOAuthService } from './git_oauth.service';
export { OauthService, GoogleOAuthService, GitOAuthService };