diff --git a/src/faction/faction.controller.ts b/src/faction/faction.controller.ts
index 28552e9d554cae242b87464b4de1675035608db7..dec9308d456e93f4c6f26fee5f5f802af4e5857e 100644
--- a/src/faction/faction.controller.ts
+++ b/src/faction/faction.controller.ts
@@ -7,6 +7,8 @@ import {
   Body,
   Get,
   Put,
+  UseInterceptors,
+  ClassSerializerInterceptor,
 } from '@nestjs/common';
 
 import { AuthGuard } from '../shared/auth.guard';
@@ -56,6 +58,7 @@ export class FactionController {
     return this.factionservice.joinGroup(person, id, data);
   }
 
+  @UseInterceptors(ClassSerializerInterceptor)
   @Get('get-faction-members/:id')
   async getFactionMembers(@Param('id') factionId) {
     return this.factionservice.listFactionMembers(factionId);
diff --git a/src/game/game.controller.ts b/src/game/game.controller.ts
index 3c6d003c98011ca14946230496345c65b74e9e6d..a97155c82d672de5092b9cf246f7e2c21f49f48b 100644
--- a/src/game/game.controller.ts
+++ b/src/game/game.controller.ts
@@ -7,6 +7,8 @@ import {
   Param,
   UsePipes,
   Put,
+  UseInterceptors,
+  ClassSerializerInterceptor,
 } from '@nestjs/common';
 
 import { GameService } from './game.service';
@@ -39,6 +41,8 @@ export class GameController {
     return this.gameservice.listGames();
   }
 
+  // ClassSerializerInterceptor removes excluded columns set in Entities
+  @UseInterceptors(ClassSerializerInterceptor)
   @Get(':id')
   async returnGameInfo(@Param('id') id: string) {
     return this.gameservice.returnGameInfo(id);