diff options
author | jm.bardallo <juanmanuel.bardallo@sic.uhu.es> | 2019-05-13 09:06:55 +0200 |
---|---|---|
committer | jm.bardallo <juanmanuel.bardallo@sic.uhu.es> | 2019-05-13 09:06:55 +0200 |
commit | 1a9285621f660504fe450c07e071584887732ab6 (patch) | |
tree | 29af3c96dc0900cbb34030f441df9af6786981f2 /admin/WebConsole3/frontend/src/app/app.module.ts | |
parent | d32a8b6f453fd0ce4d1c67d46912dbecf881191d (diff) |
Lista de trazas, se accede en el icono de la "campana" en la cabecera
Se muestra la información del usuario en el lateral izquierdo
Formulario de repositorio con la información minima
Creadas las páginas para los comandos:
- Borrar imagen de cache
- Formatear
- Particionar y formatear
Modificados timers de refresco de ventanas de ordenadores, dashboard y trazas
Creada version preliminar de creación de menús, aun por terminar de definir
Diffstat (limited to 'admin/WebConsole3/frontend/src/app/app.module.ts')
-rw-r--r-- | admin/WebConsole3/frontend/src/app/app.module.ts | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/admin/WebConsole3/frontend/src/app/app.module.ts b/admin/WebConsole3/frontend/src/app/app.module.ts index 5f861c65..34af2cb2 100644 --- a/admin/WebConsole3/frontend/src/app/app.module.ts +++ b/admin/WebConsole3/frontend/src/app/app.module.ts @@ -10,7 +10,7 @@ import {AuthModule, TokenInterceptorService} from 'globunet-angular/core'; import {HTTP_INTERCEPTORS, HttpClient, HttpClientModule} from '@angular/common/http'; import {LoginComponent} from './pages/login/login.component'; import {ImageComponent} from './pages/image/image.component'; -import { LoadingPageModule, MaterialBarModule } from 'angular-loading-page'; +import { LoadingPageModule, CircleModule } from 'angular-loading-page'; import { DashboardComponent } from './pages/dashboard/dashboard.component'; import {TranslateHttpLoader} from '@ngx-translate/http-loader'; import {TranslateLoader, TranslateModule, TranslateService} from '@ngx-translate/core'; @@ -75,6 +75,10 @@ import {SoftwareComponentsGroupComponent} from './pages/software/software-compon import {LoginCommandComponent} from './pages/command/login-command/login-command.component'; import {ExecuteCommandComponent} from './pages/command/execute-command/execute-command.component'; import {CreateImageCommandComponent} from './pages/command/create-image-command/create-image-command.component'; +import {DeleteCacheImageCommandComponent} from './pages/command/delete-cache-image-command/delete-cache-image-command.component'; +import {FormatCommandComponent} from './pages/command/format-command/format-command.component'; +import {PartitionFormatCommandComponent} from './pages/command/partition-format-command/partition-format-command.component'; +import {ColResizableDirective} from './pages/common/directive/col-resizable.directive'; @@ -121,9 +125,13 @@ import {CreateImageCommandComponent} from './pages/command/create-image-command/ LoginCommandComponent, ExecuteCommandComponent, CreateImageCommandComponent, + DeleteCacheImageCommandComponent, + FormatCommandComponent, + PartitionFormatCommandComponent, EditCommandComponent, IcheckDirective, FixedToolboxBarDirective, + ColResizableDirective, OgInformationOptionsComponent, OgCommandsOptionsComponent, OgExecuteCommandOptionsComponent, @@ -166,6 +174,9 @@ import {CreateImageCommandComponent} from './pages/command/create-image-command/ LoginCommandComponent, ExecuteCommandComponent, CreateImageCommandComponent, + DeleteCacheImageCommandComponent, + FormatCommandComponent, + PartitionFormatCommandComponent, EditCommandComponent, OgOuGeneralOptionsComponent, TraceComponent, @@ -179,7 +190,7 @@ import {CreateImageCommandComponent} from './pages/command/create-image-command/ CoreModule, DropdownModule, LayoutModule.forRoot(AdminLteConf.staticConf), - LoadingPageModule, MaterialBarModule, + LoadingPageModule, CircleModule, BrowserAnimationsModule, HttpClientModule, AuthModule.forRoot(environment), |