Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ehasa-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WIMMA Lab 2019
Overflow
ehasa-backend
Merge requests
!25
Dto service
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Dto service
dto-service
into
piirto2
Overview
0
Commits
21
Pipelines
0
Changes
1
Merged
Ghost User
requested to merge
dto-service
into
piirto2
5 years ago
Overview
0
Commits
21
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
e62d3fa8
Prev
Next
Show latest version
1 file
+
2
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
e62d3fa8
fixed undefined id bug
· e62d3fa8
L4168
authored
5 years ago
src/shared/roles.guard.ts
+
2
−
2
Options
@@ -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
;
con
st
user
=
await
this
.
getUserObject
(
request
.
headers
.
authorization
);
reque
st
.
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