From 5a8e103b7d2dadab0c8d4f32afa033d0fdd4b7de Mon Sep 17 00:00:00 2001
From: Lukas Kimpel <lukas.kimpel@mni.thm.de>
Date: Tue, 20 Mar 2018 15:39:10 +0100
Subject: [PATCH] Rename room-participant

---
 src/app/app-routing.module.ts                                 | 2 +-
 src/app/app.module.ts                                         | 2 +-
 .../room-participant.component.html}                          | 0
 .../room-participant.component.scss}                          | 0
 .../room-participant.component.spec.ts}                       | 2 +-
 .../room-participant.component.ts}                            | 4 ++--
 6 files changed, 5 insertions(+), 5 deletions(-)
 rename src/app/components/pages/{participant-room/participant-room.component.html => room-participant/room-participant.component.html} (100%)
 rename src/app/components/pages/{participant-room/participant-room.component.scss => room-participant/room-participant.component.scss} (100%)
 rename src/app/components/pages/{participant-room/participant-room.component.spec.ts => room-participant/room-participant.component.spec.ts} (90%)
 rename src/app/components/pages/{participant-room/participant-room.component.ts => room-participant/room-participant.component.ts} (89%)

diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index 7c35f06c3..2a14a42a6 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -7,7 +7,7 @@ import { CreateCommentComponent } from './components/pages/comment-create/commen
 import { ParticipantHomeScreenComponent } from './components/pages/participant-home-screen/participant-home-screen.component';
 import { AuthenticationGuard } from './guards/authentication.guard';
 import { UserRole } from './models/user-roles.enum';
-import { ParticipantRoomComponent } from './components/pages/participant-room/participant-room.component';
+import { ParticipantRoomComponent } from './components/pages/room-participant/room-participant.component';
 import { CreatorRoomComponent } from './components/pages/room-creator/room-creator.component';
 import { CommentListComponent } from './components/fragments/comment-list/comment-list.component';
 import { ContentListComponent } from './components/fragments/content-list/content-list.component';
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 3e6df8446..8360ff709 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -60,7 +60,7 @@ import { CreatorHomeScreenComponent } from './components/pages/creator-home-scre
 import { CreateCommentComponent } from './components/pages/comment-create/comment-create.component';
 import { CommentService } from './services/http/comment.service';
 import { ParticipantHomeScreenComponent } from './components/pages/participant-home-screen/participant-home-screen.component';
-import { ParticipantRoomComponent } from './components/pages/participant-room/participant-room.component';
+import { ParticipantRoomComponent } from './components/pages/room-participant/room-participant.component';
 import { DataStoreService } from './services/util/data-store.service';
 import { CreatorRoomComponent } from './components/pages/room-creator/room-creator.component';
 import { ContentDetailComponent } from './components/pages/content-detail/content-detail.component';
diff --git a/src/app/components/pages/participant-room/participant-room.component.html b/src/app/components/pages/room-participant/room-participant.component.html
similarity index 100%
rename from src/app/components/pages/participant-room/participant-room.component.html
rename to src/app/components/pages/room-participant/room-participant.component.html
diff --git a/src/app/components/pages/participant-room/participant-room.component.scss b/src/app/components/pages/room-participant/room-participant.component.scss
similarity index 100%
rename from src/app/components/pages/participant-room/participant-room.component.scss
rename to src/app/components/pages/room-participant/room-participant.component.scss
diff --git a/src/app/components/pages/participant-room/participant-room.component.spec.ts b/src/app/components/pages/room-participant/room-participant.component.spec.ts
similarity index 90%
rename from src/app/components/pages/participant-room/participant-room.component.spec.ts
rename to src/app/components/pages/room-participant/room-participant.component.spec.ts
index 37811a7fb..7e552aa17 100644
--- a/src/app/components/pages/participant-room/participant-room.component.spec.ts
+++ b/src/app/components/pages/room-participant/room-participant.component.spec.ts
@@ -1,6 +1,6 @@
 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
 
-import { ParticipantRoomComponent } from './participant-room.component';
+import { ParticipantRoomComponent } from './room-participant.component';
 
 describe('ParticipantRoomComponent', () => {
   let component: ParticipantRoomComponent;
diff --git a/src/app/components/pages/participant-room/participant-room.component.ts b/src/app/components/pages/room-participant/room-participant.component.ts
similarity index 89%
rename from src/app/components/pages/participant-room/participant-room.component.ts
rename to src/app/components/pages/room-participant/room-participant.component.ts
index f095234ca..ea18ff628 100644
--- a/src/app/components/pages/participant-room/participant-room.component.ts
+++ b/src/app/components/pages/room-participant/room-participant.component.ts
@@ -6,8 +6,8 @@ import { ActivatedRoute } from '@angular/router';
 
 @Component({
   selector: 'app-participant-room',
-  templateUrl: './participant-room.component.html',
-  styleUrls: ['./participant-room.component.scss']
+  templateUrl: './room-participant.component.html',
+  styleUrls: ['./room-participant.component.scss']
 })
 export class ParticipantRoomComponent implements OnInit {
 
-- 
GitLab