managarten/apps/mail/apps/backend/src/oauth/oauth.module.ts
Till-JS 604727c8f9 feat(mail): add complete Mail app with backend, web, mobile, and landing
- Backend (NestJS): Complete API with accounts, folders, emails, labels, compose, attachments, sync providers (IMAP, Gmail, Outlook), AI features (summarize, smart replies, categorization), and OAuth support
- Web (SvelteKit): Full email client UI with Svelte 5 runes, sidebar navigation, email list/detail views, compose modal, and theme support
- Mobile (Expo): React Native app with drawer navigation, email list/detail, compose screen, account management, and theme provider
- Landing (Astro): Marketing page with features, pricing, FAQ sections using shared-landing-ui components
- Storage: Added mail bucket and createMailStorage to shared-storage package
- Branding: Added MailLogo component

Note: Run `pnpm install` to install new dependencies (mailparser)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-03 16:06:32 +01:00

13 lines
496 B
TypeScript

import { Module } from '@nestjs/common';
import { OAuthController } from './oauth.controller';
import { GoogleOAuthService } from './google-oauth.service';
import { MicrosoftOAuthService } from './microsoft-oauth.service';
import { AccountModule } from '../account/account.module';
@Module({
imports: [AccountModule],
controllers: [OAuthController],
providers: [GoogleOAuthService, MicrosoftOAuthService],
exports: [GoogleOAuthService, MicrosoftOAuthService],
})
export class OAuthModule {}