Files
ims/app/(protected)/hse/settings/page.tsx
T
adminandClaude Sonnet 4.6 d18d29168a feat(auth): phase 3 — replace Supabase GoTrue with bcryptjs+jose
Custom auth stack: bcryptjs password hashing (cost 10, GoTrue-compatible),
jose JWT session cookies (edge-safe, 8hr TTL), new API routes for
login/logout/reset/change-password, middleware rewritten to JWT-only
verification with no DB access. All 38 protected pages and API routes
migrated from supabase.auth.getUser() to getSession(). Supabase .from()
queries retained for Phase 4. lib/db/index.ts refactored to lazy Proxy
singleton to avoid module-level throw during Next.js build.

tsc: clean, build: clean, tests: 4/4 passed

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-23 16:20:04 +08:00

33 lines
1.0 KiB
TypeScript

export const dynamic = 'force-dynamic'
import { redirect } from 'next/navigation'
import { createClient } from '@/lib/supabase/server'
import { getSession } from '@/lib/auth/get-session'
import { ApiKeyForm } from '@/components/settings/api-key-form'
export default async function SettingsPage() {
const session = await getSession()
if (!session) redirect('/login')
if (session.role !== 'admin') redirect('/hse/dashboard')
const supabase = await createClient()
const { data: settings } = await supabase
.from('app_settings')
.select('key, value, updated_at')
const settingsMap = Object.fromEntries(
(settings ?? []).map(s => [s.key, { set: Boolean(s.value), updated_at: s.updated_at }])
)
return (
<main className="max-w-2xl mx-auto px-4 py-6">
<h1 className="text-2xl font-bold text-gray-900 mb-2">Settings</h1>
<p className="text-sm text-gray-700 mb-6">
API keys are stored securely in the database. Leave blank to use environment variables.
</p>
<ApiKeyForm settings={settingsMap} />
</main>
)
}