feat: implement user reporting system with dedicated module, service, controller, DTOs, and Prisma schema updates.

This commit is contained in:
pradeepkumar
2026-03-19 05:19:47 +05:30
parent 4d5a3fc36d
commit 76b7365dc3
9 changed files with 283 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ import { CmsModule } from './cms';
import { NotificationsModule } from './notifications';
import { TestimonialsModule } from './testimonials';
import { SupportChatModule } from './support-chat';
import { UserReportsModule } from './user-reports';
import { StripeModule } from './stripe';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@@ -64,6 +65,7 @@ import { AppService } from './app.service';
NotificationsModule,
TestimonialsModule,
SupportChatModule,
UserReportsModule,
StripeModule,
],
controllers: [AppController],