MikroWizard.mikrofront/src/app/views/cloner/cloner-routing.module.ts
sepehr 10d4cff4a4 New menu/page for configuration sync and cloning (pro feature).
Now displays DHCP server details along with historical lease information(pro feature)).
Added a  ping status component for monitoring device connectivity.
Device pages now include logs, accounting, and authorization data for improved tracking.
New component in the device page to display active sessions with the ability to terminate them.
Redesigned Device Detail Page
Reload Buttons for device details page Tabs
Device detail pages now refresh every 30 seconds.
Restored the missing device logs action menu on the devices list page.
Improved handling of duplicate serial numbers when the license serial is not set, with better registration status details on the dashboard.
Various minor stability and performance improvements.
2025-02-03 12:35:12 +03:00

21 lines
429 B
TypeScript

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { ClonerComponent } from './cloner.component';
const routes: Routes = [
{
path: '',
component: ClonerComponent,
data: {
title: $localize`synchronization and cloner`
}
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class ClonerRoutingModule {
}