From 66d5932b5d77be006d3eb7cb9b4bc84f1e8a5b88 Mon Sep 17 00:00:00 2001 From: Lukas Kimpel <lukas.kimpel@mni.thm.de> Date: Tue, 20 Mar 2018 15:19:53 +0100 Subject: [PATCH] Rename creator choice content to new conventions --- src/app/app.module.ts | 2 +- .../content-choice-creator.component.html} | 0 .../content-choice-creator.component.scss} | 0 .../content-choice-creator.component.spec.ts} | 2 +- .../content-choice-creator.component.ts} | 4 ++-- 5 files changed, 4 insertions(+), 4 deletions(-) rename src/app/components/fragments/{creator-choice-content/creator-choice-content.component.html => content-choice-creator/content-choice-creator.component.html} (100%) rename src/app/components/fragments/{creator-choice-content/creator-choice-content.component.scss => content-choice-creator/content-choice-creator.component.scss} (100%) rename src/app/components/fragments/{creator-choice-content/creator-choice-content.component.spec.ts => content-choice-creator/content-choice-creator.component.spec.ts} (88%) rename src/app/components/fragments/{creator-choice-content/creator-choice-content.component.ts => content-choice-creator/content-choice-creator.component.ts} (94%) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 29ec714cc..5a2c91db9 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -72,7 +72,7 @@ import { RoomDeletionComponent } from './components/dialogs/room-delete/room-del import { AnswerStatisticsComponent } from './components/fragments/statistics/statistics.component'; import { RoomModificationComponent } from './components/dialogs/room-edit/room-edit.component'; import { ParticipantChoiceContentComponent } from './components/fragments/participant-choice-content/participant-choice-content.component'; -import { CreatorChoiceContentComponent } from './components/fragments/creator-choice-content/creator-choice-content.component'; +import { CreatorChoiceContentComponent } from './components/fragments/content-choice-creator/content-choice-creator.component'; import { AddContentComponent } from './components/pages/add-content/add-content.component'; import { ParticipantContentCarouselPageComponent diff --git a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.html b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.html similarity index 100% rename from src/app/components/fragments/creator-choice-content/creator-choice-content.component.html rename to src/app/components/fragments/content-choice-creator/content-choice-creator.component.html diff --git a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.scss b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.scss similarity index 100% rename from src/app/components/fragments/creator-choice-content/creator-choice-content.component.scss rename to src/app/components/fragments/content-choice-creator/content-choice-creator.component.scss diff --git a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.spec.ts b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.spec.ts similarity index 88% rename from src/app/components/fragments/creator-choice-content/creator-choice-content.component.spec.ts rename to src/app/components/fragments/content-choice-creator/content-choice-creator.component.spec.ts index 95fff0fce..dd2eaed2f 100644 --- a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.spec.ts +++ b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.spec.ts @@ -1,6 +1,6 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { CreatorChoiceContentComponent } from './creator-choice-content.component'; +import { CreatorChoiceContentComponent } from './content-choice-creator.component'; describe('CreatorChoiceContentComponent', () => { let component: CreatorChoiceContentComponent; diff --git a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.ts b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.ts similarity index 94% rename from src/app/components/fragments/creator-choice-content/creator-choice-content.component.ts rename to src/app/components/fragments/content-choice-creator/content-choice-creator.component.ts index 1bc3ae6ac..bf2c3b0cd 100644 --- a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.ts +++ b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.ts @@ -15,8 +15,8 @@ export class DisplayAnswer { @Component({ selector: 'app-creator-choice-content', - templateUrl: './creator-choice-content.component.html', - styleUrls: ['./creator-choice-content.component.scss'] + templateUrl: './content-choice-creator.component.html', + styleUrls: ['./content-choice-creator.component.scss'] }) export class CreatorChoiceContentComponent implements OnInit { -- GitLab