Add NocoDB configuration settings and restructure dashboard navigation
All checks were successful
Build And Push Image / docker (push) Successful in 3m2s

- Add NocoDBSettingsDialog component with API endpoints for config management
- Update dashboard navigation routes and menu structure
- Integrate external user management via auth portal
- Add NocoDB settings dialog to admin panel
This commit is contained in:
2025-08-07 19:46:27 +02:00
parent af99ea48e2
commit 6f2037e01c
6 changed files with 713 additions and 30 deletions

View File

@@ -101,6 +101,12 @@
</v-container>
<!-- NocoDB Settings Dialog -->
<NocoDBSettingsDialog
v-model="showNocoDBSettings"
@settings-saved="handleSettingsSaved"
/>
</div>
</template>
@@ -180,9 +186,14 @@ const viewAuditLogs = () => {
// TODO: Implement audit logs navigation
};
const showNocoDBSettings = ref(false);
const portalSettings = () => {
console.log('Navigate to portal settings');
// TODO: Implement portal settings navigation
showNocoDBSettings.value = true;
};
const handleSettingsSaved = () => {
console.log('NocoDB settings saved successfully');
};
const createUser = () => {