Implemented: * Account Connect * Calendar sync via delta ids then requesting single events I think I would split the messaging part into a second pr - that's a step more complex then the calendar :) --------- Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
17 lines
780 B
TypeScript
17 lines
780 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { GoogleOAuth2ClientManagerService } from 'src/modules/connected-account/oauth2-client-manager/drivers/google/google-oauth2-client-manager.service';
|
|
import { MicrosoftOAuth2ClientManagerService } from 'src/modules/connected-account/oauth2-client-manager/drivers/microsoft/microsoft-oauth2-client-manager.service';
|
|
import { OAuth2ClientManagerService } from 'src/modules/connected-account/oauth2-client-manager/services/oauth2-client-manager.service';
|
|
|
|
@Module({
|
|
imports: [],
|
|
providers: [
|
|
OAuth2ClientManagerService,
|
|
GoogleOAuth2ClientManagerService,
|
|
MicrosoftOAuth2ClientManagerService,
|
|
],
|
|
exports: [OAuth2ClientManagerService, MicrosoftOAuth2ClientManagerService],
|
|
})
|
|
export class OAuth2ClientManagerModule {}
|