469d3747af
* fix: theme-aware payment paths, auto-group validation, route guards, perf group filtering - Add common.ThemeAwarePath to generate correct redirect URLs based on active theme (default vs classic), replacing hardcoded /console/* paths in 7 controllers and service/quota.go (#4765) - Validate auto-group availability against getUserGroups before defaulting form values; playground falls back to 'default' group when 'auto' is unavailable (#4796, #4799) - Enforce HeaderNavModules settings in rankings route (frontend + backend API) and SidebarModulesAdmin in playground route to block direct URL access when features are disabled (#4704, #4512) - Filter perf_metrics API response to only include currently configured groups, hiding stale data from deleted groups (#4790) - Preserve query params (pay=success/fail) in /console/topup → /wallet frontend redirect * fix: update hero section text and localization strings for clarity
40 lines
1.3 KiB
TypeScript
Vendored
40 lines
1.3 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
import { createFileRoute, redirect } from '@tanstack/react-router'
|
|
import { Main } from '@/components/layout'
|
|
import { Playground } from '@/features/playground'
|
|
import { isSidebarModuleEnabled } from '@/lib/nav-modules'
|
|
|
|
export const Route = createFileRoute('/_authenticated/playground/')({
|
|
beforeLoad: () => {
|
|
if (!isSidebarModuleEnabled('chat', 'playground')) {
|
|
throw redirect({ to: '/dashboard' })
|
|
}
|
|
},
|
|
component: PlaygroundPage,
|
|
})
|
|
|
|
function PlaygroundPage() {
|
|
return (
|
|
<Main className='p-0'>
|
|
<Playground />
|
|
</Main>
|
|
)
|
|
}
|