mirror of
http://172.20.10.11:3000/gitadmin/INSIGHT-MVP.git
synced 2026-06-25 08:46:39 +02:00
- max-width 960px auf Kontakt-Detailseite - M365-Sektion umbenannt zu "Outlook Daten", default eingeklappt - Aufgaben-Tab entfernt (nur noch E-Mails + Kalender) - "In Outlook speichern"-Button: pusht/aktualisiert Kontakt in Outlook-Kontakte via MS Graph POST/PATCH /me/contacts - Kontaktdaten: Typ, Status immer sichtbar, Bundesland (state) in Adresse - Backend: GraphService exportiert, pushContactToOutlook-Methode, POST /crm/contacts/:id/push-to-outlook Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
517 B
TypeScript
14 lines
517 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { GraphController } from './graph.controller';
|
|
import { Office365Controller } from './office365.controller';
|
|
import { GraphService } from './graph.service';
|
|
import { CrmPrismaModule } from '../prisma/crm-prisma.module';
|
|
import { RedisModule } from '../redis/redis.module';
|
|
|
|
@Module({
|
|
imports: [CrmPrismaModule, RedisModule],
|
|
controllers: [GraphController, Office365Controller],
|
|
providers: [GraphService],
|
|
exports: [GraphService],
|
|
})
|
|
export class GraphModule {}
|