Update: 2026-05-08 01:59:25

This commit is contained in:
Hamza-Ayed
2026-05-08 01:59:25 +03:00
parent 7528ec992d
commit 1cd511f12e
9 changed files with 507 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ import '../../features/onboarding/views/onboarding_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';
import '../../features/referral/views/referral_view.dart';
part 'app_routes.dart';
@@ -161,5 +162,9 @@ class AppPages {
name: AppRoutes.AUDIT_LOG,
page: () => const AuditLogView(),
),
GetPage(
name: AppRoutes.REFERRAL,
page: () => const ReferralView(),
),
];
}

View File

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