Skip to content
Snippets Groups Projects
Verified Commit 5a8e103b authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Rename room-participant

parent a4e2cc3a
1 merge request!97Resolve "Refactor project structure"
Pipeline #13743 passed with stage
in 39 seconds
...@@ -7,7 +7,7 @@ import { CreateCommentComponent } from './components/pages/comment-create/commen ...@@ -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 { ParticipantHomeScreenComponent } from './components/pages/participant-home-screen/participant-home-screen.component';
import { AuthenticationGuard } from './guards/authentication.guard'; import { AuthenticationGuard } from './guards/authentication.guard';
import { UserRole } from './models/user-roles.enum'; 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 { CreatorRoomComponent } from './components/pages/room-creator/room-creator.component';
import { CommentListComponent } from './components/fragments/comment-list/comment-list.component'; import { CommentListComponent } from './components/fragments/comment-list/comment-list.component';
import { ContentListComponent } from './components/fragments/content-list/content-list.component'; import { ContentListComponent } from './components/fragments/content-list/content-list.component';
......
...@@ -60,7 +60,7 @@ import { CreatorHomeScreenComponent } from './components/pages/creator-home-scre ...@@ -60,7 +60,7 @@ import { CreatorHomeScreenComponent } from './components/pages/creator-home-scre
import { CreateCommentComponent } from './components/pages/comment-create/comment-create.component'; import { CreateCommentComponent } from './components/pages/comment-create/comment-create.component';
import { CommentService } from './services/http/comment.service'; import { CommentService } from './services/http/comment.service';
import { ParticipantHomeScreenComponent } from './components/pages/participant-home-screen/participant-home-screen.component'; 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 { DataStoreService } from './services/util/data-store.service';
import { CreatorRoomComponent } from './components/pages/room-creator/room-creator.component'; import { CreatorRoomComponent } from './components/pages/room-creator/room-creator.component';
import { ContentDetailComponent } from './components/pages/content-detail/content-detail.component'; import { ContentDetailComponent } from './components/pages/content-detail/content-detail.component';
......
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ParticipantRoomComponent } from './participant-room.component'; import { ParticipantRoomComponent } from './room-participant.component';
describe('ParticipantRoomComponent', () => { describe('ParticipantRoomComponent', () => {
let component: ParticipantRoomComponent; let component: ParticipantRoomComponent;
......
...@@ -6,8 +6,8 @@ import { ActivatedRoute } from '@angular/router'; ...@@ -6,8 +6,8 @@ import { ActivatedRoute } from '@angular/router';
@Component({ @Component({
selector: 'app-participant-room', selector: 'app-participant-room',
templateUrl: './participant-room.component.html', templateUrl: './room-participant.component.html',
styleUrls: ['./participant-room.component.scss'] styleUrls: ['./room-participant.component.scss']
}) })
export class ParticipantRoomComponent implements OnInit { export class ParticipantRoomComponent implements OnInit {
......
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