Update: 2026-05-08 01:41:28

This commit is contained in:
Hamza-Ayed
2026-05-08 01:41:28 +03:00
parent 6b4e7721ee
commit ed8203a02e
15 changed files with 855 additions and 79 deletions

View File

@@ -22,6 +22,7 @@ import '../../features/onboarding/views/onboarding_view.dart';
import '../../features/users/views/users_management_view.dart';
import '../../features/tenants/views/tenants_management_view.dart';
import '../../features/reports/views/tax_report_view.dart';
import '../../features/audit/views/audit_log_view.dart';
part 'app_routes.dart';
@@ -156,5 +157,9 @@ class AppPages {
name: AppRoutes.TAX_REPORT,
page: () => const TaxReportView(),
),
GetPage(
name: AppRoutes.AUDIT_LOG,
page: () => const AuditLogView(),
),
];
}

View File

@@ -22,4 +22,5 @@ abstract class AppRoutes {
static const TENANTS_MANAGEMENT = '/tenants-management';
static const USERS_MANAGEMENT = '/users-management';
static const TAX_REPORT = '/tax-report';
static const AUDIT_LOG = '/audit-log';
}