diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite index e0c38d7..0c2d837 100644 Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 2839f93..f15969c 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -10,7 +10,7 @@ import { BoardsComponent } from './boards/boards.component'; import { NotFoundComponent } from './not-found/not-found.component'; import { ApiChatService } from './services/api-chat.service'; import { FormsModule } from '@angular/forms'; -import { SendPostComponent } from './boards/send-post/send-post.component'; +import { SendPostComponent } from './send-post/send-post.component'; import { PostComponent } from './boards/post/post.component' const appRoutes: Routes = [ diff --git a/src/app/boards/send-post/send-post.component.css b/src/app/send-post/send-post.component.css similarity index 100% rename from src/app/boards/send-post/send-post.component.css rename to src/app/send-post/send-post.component.css diff --git a/src/app/boards/send-post/send-post.component.html b/src/app/send-post/send-post.component.html similarity index 100% rename from src/app/boards/send-post/send-post.component.html rename to src/app/send-post/send-post.component.html diff --git a/src/app/boards/send-post/send-post.component.spec.ts b/src/app/send-post/send-post.component.spec.ts similarity index 100% rename from src/app/boards/send-post/send-post.component.spec.ts rename to src/app/send-post/send-post.component.spec.ts diff --git a/src/app/boards/send-post/send-post.component.ts b/src/app/send-post/send-post.component.ts similarity index 78% rename from src/app/boards/send-post/send-post.component.ts rename to src/app/send-post/send-post.component.ts index 3bdfb00..80f904a 100644 --- a/src/app/boards/send-post/send-post.component.ts +++ b/src/app/send-post/send-post.component.ts @@ -1,6 +1,5 @@ import { Component, OnInit } from '@angular/core'; -import { HttpClient } from '@angular/common/http'; -import { ApiChatService } from '../../services/api-chat.service'; +import { ApiChatService } from '../services/api-chat.service'; @Component({ selector: 'app-send-post',