Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Commits
c2ba1217
Commit
c2ba1217
authored
7 years ago
by
Hagen Dreßler
Browse files
Options
Downloads
Patches
Plain Diff
Rename variable
parent
4d5d93c6
1 merge request
!66
Resolve "Fix - AppRouting"
This commit is part of merge request
!66
. Comments created here will be created in the context of that merge request.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/room-list/room-list.component.html
+1
-1
1 addition, 1 deletion
src/app/room-list/room-list.component.html
src/app/room-list/room-list.component.ts
+3
-3
3 additions, 3 deletions
src/app/room-list/room-list.component.ts
with
4 additions
and
4 deletions
src/app/room-list/room-list.component.html
+
1
−
1
Edit
View file @
c2ba1217
...
@@ -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>
This diff is collapsed.
Click to expand it.
src/app/room-list/room-list.component.ts
+
3
−
3
Edit
View file @
c2ba1217
...
@@ -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
'
;
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment