Skip to content
Snippets Groups Projects
Commit 846ddc1f authored by Ruben Bimberg's avatar Ruben Bimberg :computer:
Browse files

Fix authentication bug

If a creator gets the role participant,
he cannot see this room as a creator.
parent 4262fe42
No related merge requests found
...@@ -93,6 +93,7 @@ export class RoomJoinComponent implements OnInit { ...@@ -93,6 +93,7 @@ export class RoomJoinComponent implements OnInit {
addAndNavigate() { addAndNavigate() {
if (this.user.id === this.room.ownerId) { if (this.user.id === this.room.ownerId) {
this.authenticationService.setAccess(this.room.shortId, UserRole.CREATOR);
this.router.navigate([`/creator/room/${this.room.shortId}/comments`]); this.router.navigate([`/creator/room/${this.room.shortId}/comments`]);
} else { } else {
this.roomService.addToHistory(this.room.id); this.roomService.addToHistory(this.room.id);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment