From 6c26caab006091b9529755c44e08c342b863b3c5 Mon Sep 17 00:00:00 2001 From: RakVhalate Date: Sat, 22 Oct 2022 22:30:31 +1000 Subject: [PATCH] small switch --- .vs/slnx.sqlite | Bin 90112 -> 90112 bytes src/app/app.module.ts | 2 +- .../send-post/send-post.component.css | 0 .../send-post/send-post.component.html | 0 .../send-post/send-post.component.spec.ts | 0 .../send-post/send-post.component.ts | 3 +-- 6 files changed, 2 insertions(+), 3 deletions(-) rename src/app/{boards => }/send-post/send-post.component.css (100%) rename src/app/{boards => }/send-post/send-post.component.html (100%) rename src/app/{boards => }/send-post/send-post.component.spec.ts (100%) rename src/app/{boards => }/send-post/send-post.component.ts (78%) diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite index e0c38d7c5daa7ecf8d70909df70e2feba6582318..0c2d8371e982adf16fcb479b89129821b7ed2a13 100644 GIT binary patch delta 752 zcmYLGTS!z<6g_9|n+s-wjD>Opg&^_x^KKP9f+RF(C(ksM4I@t_N2q7g+ljz^XE_o|D3o_ffq+jB*>L^Sh7 zyNkNj9YkxeT8wxiR+AhwhP=`3A({C2E`J`M8fH#C-B=amUVjN>aAiOyP4=_Ks9|JS zw=NS8wI-(Zv~>R_&DzDP97!f2&G9S#lmoJPO=r1O5td1Vt(P;jAy-*%4|(00XQn!@ z%8smh?(K;=vi6&)o@;8ZVjs!`jar(Tovk~8cl17z!XCj#`NxjU_6<^~NN8C{i^C!f z^0vN03}g!)n%Pq41AT{G?zE1bovTDKm;0*3z1^e>ng#rezwigH;8*;FA8-lZ-~ztH zXE+BwypJ<@7ao8KQ+ONhz$Bc8ao!lI-UpZQ0Cr#-)?qDf!>yQyE_9*Q5nKLa%Q~h9i^ZmOTwwot07Vboa8c6>#d@oJ-M@ucky5IeV)5 z9y(PA>)U<~QD%oam|_FrAwuYf48npUROnJr5C-KT0-<&c-40%!m*;uk@B5zj`9@~> zky(DUi1uDC)@ko_>`E=|uvTjK=D451X*dr1p;U@9MeE!mo)wRZ)go~%un{fK8q>b< z<mXTmfFlV+kTampCzNhOq&85S2U_NQTju&I_@&IiSN56N!#-6YekuxPA{nnS z2F;YRel5G+ns!JXtfsBJ8azanGgCc=0k*Z(ndnwoApc2ee(XV6Wxf5x+qQfw-F8E8 zxaXM?i96gMtaRj-lUz?bsL);a`C}pXS2E2Txf;Z08|7j3EqQ9oFJ5EW>>Cq8oYm4J)t=U*IO3ge7;BX0*tkGfP^IsBN*@FN8 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',