Add OAuth provider runtime and providers UI

This commit is contained in:
lpf
2026-03-11 15:47:49 +08:00
parent d9872c3da7
commit 1c0e463d07
52 changed files with 9772 additions and 901 deletions

View File

@@ -7,6 +7,7 @@ import Layout from './components/Layout';
const Dashboard = lazy(() => import('./pages/Dashboard'));
const Chat = lazy(() => import('./pages/Chat'));
const Config = lazy(() => import('./pages/Config'));
const Providers = lazy(() => import('./pages/Providers'));
const Cron = lazy(() => import('./pages/Cron'));
const Logs = lazy(() => import('./pages/Logs'));
const Skills = lazy(() => import('./pages/Skills'));
@@ -44,6 +45,7 @@ export default function App() {
<Route path="whatsapp" element={<Navigate to="/channels/whatsapp" replace />} />
<Route path="channels/:channelId" element={<ChannelSettings />} />
<Route path="config" element={<Config />} />
<Route path="providers" element={<Providers />} />
<Route path="cron" element={<Cron />} />
<Route path="memory" element={<Memory />} />
<Route path="nodes" element={<Nodes />} />