4c3880e07f
Moderator role existed in the schema and was already respected by
comment deletion, but every admin page/route treated moderator
identically to a regular user (403/redirect). Wires it up narrowly:
admin/layout.tsx now lets admin+moderator through and filters the
nav by role, while every admin-only page (users, tiers, settings,
webhooks, insights, etc.) explicitly redirects moderators away via a
new requireFullAdminPage() helper -- the nav filter is UX, this is
the actual gate. Moderators land on Reports and Recipes: reports
GET/PATCH now accept requireAdmin({allowModerator: true}), and a new
PATCH /api/v1/admin/recipes/[id] lets admin+moderator unpublish a
public recipe (flip to private) as a takedown action, audit-logged.
Also found and fixed a real bug while auditing the PWA push pipeline
for a "push click-through" gap: public/sw.js had no `push` event
listener at all, so incoming push messages never displayed anything
-- push was silently non-functional end-to-end despite the
subscribe/send plumbing all working. Added the push listener
(showNotification) and a notificationclick listener that focuses an
existing tab or opens one at the payload's url.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { db, tierDefinitions } from "@epicure/db";
|
|
import { TierLimitsForm } from "@/components/admin/tier-limits-form";
|
|
import { FeatureFlagsForm } from "@/components/admin/feature-flags-form";
|
|
import { getFeatureFlagMatrix, FEATURE_DEFINITIONS } from "@/lib/feature-flags";
|
|
import { requireFullAdminPage } from "@/lib/require-admin-page";
|
|
|
|
export const metadata: Metadata = {};
|
|
|
|
export default async function AdminTiersPage() {
|
|
await requireFullAdminPage();
|
|
const [tiers, featureFlagMatrix] = await Promise.all([
|
|
db.select().from(tierDefinitions),
|
|
getFeatureFlagMatrix(),
|
|
]);
|
|
|
|
return (
|
|
<div className="space-y-8">
|
|
<div>
|
|
<h1 className="text-2xl font-bold tracking-tight">Tier Limits</h1>
|
|
<p className="text-muted-foreground text-sm mt-1">
|
|
Change monthly quotas per tier. Takes effect immediately for all users on that tier.
|
|
</p>
|
|
</div>
|
|
|
|
{tiers.map((tierDefinition) => (
|
|
<TierLimitsForm key={tierDefinition.tier} tierDefinition={tierDefinition} />
|
|
))}
|
|
|
|
<FeatureFlagsForm
|
|
features={FEATURE_DEFINITIONS.map((f) => ({ key: f.key, label: f.label, description: f.description }))}
|
|
initialMatrix={featureFlagMatrix}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|