updates
This commit is contained in:
@@ -60,6 +60,7 @@ const ProfilePage = lazy(() => import('./pages/customer/ProfilePage'));
|
||||
const LoyaltyPage = lazy(() => import('./pages/customer/LoyaltyPage'));
|
||||
const GroupBookingPage = lazy(() => import('./pages/customer/GroupBookingPage'));
|
||||
const ComplaintPage = lazy(() => import('./pages/customer/ComplaintPage'));
|
||||
const GDPRPage = lazy(() => import('./pages/customer/GDPRPage'));
|
||||
const AboutPage = lazy(() => import('./features/content/pages/AboutPage'));
|
||||
const ContactPage = lazy(() => import('./features/content/pages/ContactPage'));
|
||||
const PrivacyPolicyPage = lazy(() => import('./features/content/pages/PrivacyPolicyPage'));
|
||||
@@ -97,6 +98,11 @@ const BlogManagementPage = lazy(() => import('./pages/admin/BlogManagementPage')
|
||||
const ComplaintManagementPage = lazy(() => import('./pages/admin/ComplaintManagementPage'));
|
||||
const FinancialAuditTrailPage = lazy(() => import('./pages/admin/FinancialAuditTrailPage'));
|
||||
const ComplianceReportingPage = lazy(() => import('./pages/admin/ComplianceReportingPage'));
|
||||
const ApprovalManagementPage = lazy(() => import('./pages/admin/ApprovalManagementPage'));
|
||||
const GDPRManagementPage = lazy(() => import('./pages/admin/GDPRManagementPage'));
|
||||
const WebhookManagementPage = lazy(() => import('./pages/admin/WebhookManagementPage'));
|
||||
const APIKeyManagementPage = lazy(() => import('./pages/admin/APIKeyManagementPage'));
|
||||
const BackupManagementPage = lazy(() => import('./pages/admin/BackupManagementPage'));
|
||||
|
||||
const StaffDashboardPage = lazy(() => import('./pages/staff/DashboardPage'));
|
||||
const StaffBookingManagementPage = lazy(() => import('./pages/staff/BookingManagementPage'));
|
||||
@@ -413,6 +419,14 @@ function App() {
|
||||
</CustomerRoute>
|
||||
}
|
||||
/>
|
||||
<Route
|
||||
path="gdpr"
|
||||
element={
|
||||
<ProtectedRoute>
|
||||
<GDPRPage />
|
||||
</ProtectedRoute>
|
||||
}
|
||||
/>
|
||||
</Route>
|
||||
|
||||
{}
|
||||
@@ -545,6 +559,26 @@ function App() {
|
||||
path="compliance"
|
||||
element={<ComplianceReportingPage />}
|
||||
/>
|
||||
<Route
|
||||
path="approvals"
|
||||
element={<ApprovalManagementPage />}
|
||||
/>
|
||||
<Route
|
||||
path="gdpr"
|
||||
element={<GDPRManagementPage />}
|
||||
/>
|
||||
<Route
|
||||
path="webhooks"
|
||||
element={<WebhookManagementPage />}
|
||||
/>
|
||||
<Route
|
||||
path="api-keys"
|
||||
element={<APIKeyManagementPage />}
|
||||
/>
|
||||
<Route
|
||||
path="backups"
|
||||
element={<BackupManagementPage />}
|
||||
/>
|
||||
</Route>
|
||||
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user