Refactor WebComponent and iframing to be mutually exclusive, strip old app

This commit is contained in:
Kristóf Tóth
2018-04-25 11:48:15 +02:00
parent a0f9ec6bd6
commit 52cfd4bf55
10 changed files with 37 additions and 87 deletions

View File

@ -10,7 +10,7 @@ import { AppComponent } from './app.component';
import { DashboardComponent } from './dashboard/dashboard.component';
import { HeaderComponent } from './header/header.component';
import { SidebarComponent } from './sidebar/sidebar.component';
import { LoginComponent } from './web/web.component';
import { WebComponent } from './web/web.component';
import { MarkdownService } from './services/markdown.service';
import { TerminadoService } from './services/terminado.service';
import { IdeComponent } from './ide/ide.component';
@ -22,6 +22,7 @@ import { ProcessManagerService } from './services/processmanager.service';
import { AppRoutingModule } from './app-routing.module';
import { TestmessengerComponent } from './testmessenger/testmessenger.component';
import { DeploymentNotificationService } from './services/deployment-notification.service';
import { SafePipe } from './pipes/safe.pipe';
@NgModule({
@ -29,12 +30,13 @@ import { DeploymentNotificationService } from './services/deployment-notificatio
AppComponent,
HeaderComponent,
SidebarComponent,
LoginComponent,
WebComponent,
IdeComponent,
MessagesComponent,
TerminalComponent,
DashboardComponent,
TestmessengerComponent
TestmessengerComponent,
SafePipe
],
imports: [
BrowserModule,