fix: ensure HttpCode annotations for specific endpoints in users and groups controllers refactor: enhance person handling logic in groups service for better e2e test support fix: improve CORS configuration for handling additional origins feat: add @Public decorator to app controller's root endpoint refactor: modify projects controller to return JSON responses for check-access endpoint
13 lines
419 B
TypeScript
13 lines
419 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ProjectsController } from './controllers/projects.controller';
|
|
import { ProjectsService } from './services/projects.service';
|
|
import { WebSocketsModule } from '../websockets/websockets.module';
|
|
|
|
@Module({
|
|
imports: [WebSocketsModule],
|
|
controllers: [ProjectsController],
|
|
providers: [ProjectsService],
|
|
exports: [ProjectsService],
|
|
})
|
|
export class ProjectsModule {}
|