Skip to content
Snippets Groups Projects

Join game

Merged Ghost User requested to merge JoinGame into Development
1 file
+ 6
1
Compare changes
  • Side-by-side
  • Inline
+ 6
1
import { Module } from '@nestjs/common';
import { APP_FILTER, APP_INTERCEPTOR } from '@nestjs/core';
import { APP_FILTER, APP_INTERCEPTOR, APP_GUARD } from '@nestjs/core';
import { TypeOrmModule } from '@nestjs/typeorm';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@@ -11,6 +11,7 @@ import { LoggingInterceptor } from './shared/logging.interceptor';
import { MapMarkerModule } from './mapmarkers/mapmarkers.module';
import { NotificationModule } from './notifications/notifications.module';
import { GameModule } from './game/game.module';
import { RolesGuard } from './shared/roles.guard';
@Module({
imports: [
@@ -31,6 +32,10 @@ import { GameModule } from './game/game.module';
provide: APP_INTERCEPTOR,
useClass: LoggingInterceptor,
},
{
provide: APP_GUARD,
useClass: RolesGuard
}
],
})
export class AppModule {
Loading