Skip to content
Snippets Groups Projects
Commit c2ba1217 authored by Hagen Dreßler's avatar Hagen Dreßler
Browse files

Rename variable

parent 4d5d93c6
1 merge request!66Resolve "Fix - AppRouting"
This commit is part of merge request !66. Comments created here will be created in the context of that merge request.
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
{{ room.description }} {{ room.description }}
</p> </p>
<mat-action-row> <mat-action-row>
<button mat-button routerLink="/{{ role }}/room/{{ room.id }}">Join room</button> <button mat-button routerLink="/{{ baseUrl }}/room/{{ room.id }}">Join room</button>
</mat-action-row> </mat-action-row>
</mat-expansion-panel> </mat-expansion-panel>
</mat-accordion> </mat-accordion>
...@@ -12,7 +12,7 @@ import {UserRole} from '../user-roles.enum'; ...@@ -12,7 +12,7 @@ import {UserRole} from '../user-roles.enum';
export class RoomListComponent implements OnInit { export class RoomListComponent implements OnInit {
rooms: Room[]; rooms: Room[];
closedRooms: Room[]; closedRooms: Room[];
role: string; baseUrl: string;
constructor( constructor(
private roomService: RoomService, private roomService: RoomService,
...@@ -25,9 +25,9 @@ export class RoomListComponent implements OnInit { ...@@ -25,9 +25,9 @@ export class RoomListComponent implements OnInit {
getPath() { getPath() {
if (this.authenticationService.getRole() == UserRole.CREATOR) { if (this.authenticationService.getRole() == UserRole.CREATOR) {
this.role = 'creator'; this.baseUrl = 'creator';
} else { } else {
this.role = 'participant'; this.baseUrl = 'participant';
} }
} }
......
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