Spaces:
Paused
Paused
| // ============================================ | |
| // HUMAN APPROVAL SYSTEM - Human-in-the-Loop | |
| // ============================================ | |
| const approvalsRouter = (await import('./routes/approvals.js')).default; | |
| app.use('/api/approvals', approvalsRouter); | |
| console.log('🔐 Approval API mounted at /api/approvals'); | |
| // ============================================ | |
| // SOCIAL MEDIA OAUTH - Multi-Platform Integration | |
| // ============================================ | |
| const socialAuthRouter = (await import('./routes/socialAuth.js')).default; | |
| app.use('/api/auth', socialAuthRouter); | |
| app.use('/api/social', socialAuthRouter); | |
| console.log('📱 Social Media OAuth mounted at /api/auth and /api/social'); | |