Files
NightSpire/web-next/app/[locale]/battlepay/page.tsx
T
Inna 20e1d5a6b5 Renombrar /login -> /log-in en toda la web (/login da 404)
Mueve la página de login a /log-in y actualiza todas las referencias (enlace
CONECTAR del header y los redirect de auth de ~45 páginas). /login ahora da 404.
La API /api/auth/login no se toca (solo la ruta de página).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-14 21:03:31 +00:00

32 lines
1.1 KiB
TypeScript

import { getTranslations, setRequestLocale } from 'next-intl/server'
import { redirect } from '@/i18n/navigation'
import { getSession } from '@/lib/session'
import { getPendingOrders } from '@/lib/battlepay'
import { PageShell } from '@/components/PageShell'
import { BattlepayList } from '@/components/BattlepayList'
export const dynamic = 'force-dynamic'
export default async function BattlepayPage({ params }: { params: Promise<{ locale: string }> }) {
const { locale } = await params
setRequestLocale(locale)
const t = await getTranslations('Battlepay')
const session = await getSession()
if (!session.bnetId) redirect({ href: '/log-in', locale })
if (!session.username) redirect({ href: '/select-account', locale })
const orders = await getPendingOrders(session.accountId ?? 0)
return (
<PageShell title={t('title')}>
<div className="box-content">
<div className="body-box-content centered">
<p>{t('intro')}</p>
<br />
<BattlepayList orders={orders} />
</div>
</div>
</PageShell>
)
}