diff --git a/static/app.js b/static/app.js index 85f7e28..71880da 100644 --- a/static/app.js +++ b/static/app.js @@ -2,6 +2,12 @@ const API = ''; let currentChatId = null; +// Toggle collapsible nav sections (Admin, Settings) +function toggleNavSection(id) { + const el = document.getElementById(id); + if (el) el.style.display = el.style.display === 'none' ? 'block' : 'none'; +} + // ============================================================ // NAVIGATION // ============================================================ diff --git a/static/index.html b/static/index.html index 0e707d5..837654d 100644 --- a/static/index.html +++ b/static/index.html @@ -22,6 +22,25 @@
User management with role-based access control — coming soon.
Service status dashboard — coming soon.
Configure AI provider, model, and API key — coming soon.
Theme and display settings — coming soon.
Company name, logo, and header text — coming soon.
ONLYOFFICE connection URL and JWT secret — coming soon.
Email notification settings — coming soon.