diff --git a/src/game/game.dto.ts b/src/game/game.dto.ts index d0d19dd65db2dcbaa855be70d45c334632be6579..da61196a3325dd6aa314b63fe2a50c8bcfdbf147 100644 --- a/src/game/game.dto.ts +++ b/src/game/game.dto.ts @@ -23,8 +23,6 @@ export class CreateGameDTO { @IsJSON() @IsNotEmpty() mapCoordinates: JSON; - @IsString() @IsNotEmpty() @Length(3, 255) - GM_Password?: string; } /*export class EditGameDTO { diff --git a/src/game/game.entity.ts b/src/game/game.entity.ts index 3db7f242880b3559add149fe48372735faf6ff01..c086aaec41035e021d209418c913c29e1db09f80 100644 --- a/src/game/game.entity.ts +++ b/src/game/game.entity.ts @@ -1,5 +1,4 @@ import { Entity, Column, PrimaryGeneratedColumn, OneToMany, ManyToOne, Timestamp} from 'typeorm'; -import * as bcrypt from 'bcryptjs'; import {PersonEntity, PersonRoleEntity} from '../user/user.entity' import {FactionEntity} from './faction.entity' import {CoordinateEntity, MapEntity} from './coordinate.entity' @@ -13,7 +12,6 @@ export class GameEntity { @Column({type: 'text'}) gameDescription: string; @Column({type: 'date'}) startDate: string; @Column({type: 'date'}) endDate: string; - @Column({type: 'text'}) GM_Password: string; @ManyToOne(type => MapEntity, map => map.games) map: MapEntity; @@ -25,13 +23,10 @@ export class GameEntity { objective_points: ObjectivePointEntity[]; gameObject() { - const {gameId, gameName, gameDescription, startDate, endDate, factions, objective_points, map, GM_Password} = this; - return {gameId, gameName, gameDescription, startDate, endDate, factions, objective_points, map, GM_Password}; + const {gameId, gameName, gameDescription, startDate, endDate, factions, objective_points, map} = this; + return {gameId, gameName, gameDescription, startDate, endDate, factions, objective_points, map}; } - async comparePassword(attempt: string) { - return await bcrypt.compareSync(attempt, this.GM_Password); - } } @Entity('Game_Person') @@ -68,7 +63,7 @@ export class ObjectivePointEntity { export class ObjectivePoint_HistoryEntity { @PrimaryGeneratedColumn('uuid') oP_HistoryId: string; @Column({type: 'timestamp'}) oP_HistoryTimestamp: Timestamp; - @Column({/*type: 'timestamp'*/}) oP_HistoryStatus: number; + @Column({}) oP_HistoryStatus: number; @ManyToOne(type => ObjectivePointEntity, objective_point => objective_point.op_history) objective_point: ObjectivePointEntity; diff --git a/src/game/game.service.ts b/src/game/game.service.ts index 9a5cd1c1905bf8f8981bfb92b6aa66580526236d..73cdd0dba614c3a3ad6ac89fb3e2c7e9e0732acd 100644 --- a/src/game/game.service.ts +++ b/src/game/game.service.ts @@ -78,8 +78,6 @@ export class GameService { }); const game = await this.gameRepository.findOne({ where: { id: gameId } }); - const index = game.GM_Password.indexOf(json.password); - // create game_Person entry /* const gamePerson = await this.game_PersonRepository.create({ faction,