// Settings Page Module class SettingsPage { constructor() { this.settings = null; this.init(); } async init() { await this.loadSettings(); this.setupEventListeners(); } async loadSettings() { try { const data = await window.api.get('/system/settings'); this.settings = data; this.renderSettings(); } catch (error) { console.error('Error loading settings:', error); window.authManager.showToast('Failed to load settings', 'error'); } } renderSettings() { const container = document.getElementById('page-content'); if (!container || !this.settings) return; // Settings template container.innerHTML = `
${token}
config.toml.
Runtime configuration updates are coming in a future release. For now, please edit your config.toml or .env file and restart the service to apply changes.