Skip to content
Snippets Groups Projects

Dto service

Merged Ghost User requested to merge dto-service into piirto2
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -32,9 +32,9 @@ export class RolesGuard implements CanActivate {
@@ -32,9 +32,9 @@ export class RolesGuard implements CanActivate {
return false;
return false;
}
}
const gameId = request.params.id;
const gameId = request.params.id;
const user = await this.getUserObject(request.headers.authorization);
request.user = await this.getUserObject(request.headers.authorization);
const role = await this.game_PersonRepository.findOne({
const role = await this.game_PersonRepository.findOne({
person: user['id'],
person: request.user['id'],
game: gameId,
game: gameId,
});
});
// check that the role matches the criteria and that token is valid for this game
// check that the role matches the criteria and that token is valid for this game
Loading