Move to modular fanout bus

This commit is contained in:
Jack Kingsman
2026-03-05 17:16:13 -08:00
parent 93b5bd908a
commit 7cd54d14d8
34 changed files with 2489 additions and 1292 deletions
@@ -3,7 +3,7 @@ export type SettingsSection =
| 'local'
| 'database'
| 'bot'
| 'mqtt'
| 'fanout'
| 'statistics'
| 'about';
@@ -12,7 +12,7 @@ export const SETTINGS_SECTION_ORDER: SettingsSection[] = [
'local',
'database',
'bot',
'mqtt',
'fanout',
'statistics',
'about',
];
@@ -22,7 +22,7 @@ export const SETTINGS_SECTION_LABELS: Record<SettingsSection, string> = {
local: '🖥️ Local Configuration',
database: '🗄️ Database & Messaging',
bot: '🤖 Bots',
mqtt: '📤 MQTT',
fanout: '📤 Fanout & Forwarding',
statistics: '📊 Statistics',
about: 'About',
};