summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole3/frontend/src/app/app-routing.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole3/frontend/src/app/app-routing.module.ts')
-rw-r--r--admin/WebConsole3/frontend/src/app/app-routing.module.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/admin/WebConsole3/frontend/src/app/app-routing.module.ts b/admin/WebConsole3/frontend/src/app/app-routing.module.ts
index 80d357fa..f91738a4 100644
--- a/admin/WebConsole3/frontend/src/app/app-routing.module.ts
+++ b/admin/WebConsole3/frontend/src/app/app-routing.module.ts
@@ -27,6 +27,9 @@ import {SoftwareComponent} from './pages/software/software.component';
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';
const routes: Routes = [
@@ -132,10 +135,18 @@ const routes: Routes = [
component: MenuEditComponent
},
{
+ path: 'menus/edit/:id',
+ component: MenuEditComponent
+ },
+ {
path: 'commands',
component: CommandComponent
},
{
+ path: 'commands/partition_format',
+ component: PartitionFormatCommandComponent
+ },
+ {
path: 'commands/deploy_image',
component: DeployImageCommandComponent
},
@@ -152,6 +163,14 @@ const routes: Routes = [
component: CreateImageCommandComponent
},
{
+ path: 'commands/delete_cache_image',
+ component: DeleteCacheImageCommandComponent
+ },
+ {
+ path: 'commands/format',
+ component: FormatCommandComponent
+ },
+ {
path: 'commands/:id',
component: EditCommandComponent
},