feat: Cloudflare Turnstile on auth, CSP fixes, admin/SEO/analytics additions
Turnstile bot protection (sign-in, sign-up, password-reset): - Register Better Auth's captcha plugin with the cloudflare-turnstile provider; endpoints listed explicitly rather than relying on defaults. /reset-password is intentionally excluded — it is reached only via a single-use emailed token. - Add an explicit-render Turnstile widget component. Tokens are single-use, so each form resets the challenge after a failed submit; submit stays disabled until a token is held. - Read the site key server-side and pass it down as a prop, so rotating it does not require a rebuild. - Fail fast in production when TURNSTILE_SECRET_KEY is missing, and when a secret is set without a site key (that combination would demand a token no form can produce, locking every user out). - Pass a throwaway secret during `next build` in the Dockerfile, mirroring the existing BETTER_AUTH_SECRET treatment, so image builds don't need it. CSP fixes in middleware (these blocked Turnstile entirely): - Add frame-src for challenges.cloudflare.com. Without it the widget's iframe fell back to default-src 'self' and was blocked outright. - Allow 'unsafe-eval' and websockets in DEVELOPMENT only. `next dev` compiles with eval(), so the strict policy threw EvalError and killed hydration — no client JS ran at all, which also meant form submit handlers never fired. Production policy is unchanged and still strict. Also included (concurrent work in the tree): - Admin organizations pages and lib/admin/orgs. - Episode moderation migration, SEO metadata (sitemap, robots, JSON-LD, OG/Twitter images, manifest), Umami analytics, not-found page. Local dev database: docker-compose.dev.yml provisions Postgres 18 on port 5443 (5432-5442 are in use by other local projects). Note: `npx tsc --noEmit` currently fails in app/(app)/team/page.tsx — an `invitations` prop the component does not accept. This predates the commit and will fail `next build` until fixed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
35379212fb
commit
3e9ba07175
@@ -1,3 +1,4 @@
|
||||
import type { Metadata } from "next";
|
||||
import Link from "next/link";
|
||||
import { Mic2, Plus, Sparkles, ArrowRight, Mic, Gauge, Crown, Infinity as InfinityIcon } from "lucide-react";
|
||||
import { requireAuth } from "@/lib/auth/guards";
|
||||
@@ -21,6 +22,8 @@ const METRIC_LABELS: Record<UsageMetric, string> = {
|
||||
repurpose: "Repurposed content",
|
||||
};
|
||||
|
||||
export const metadata: Metadata = { title: "Dashboard" };
|
||||
|
||||
export default async function DashboardPage() {
|
||||
const session = await requireAuth();
|
||||
const { plan, key, subjectId } = await getEffectivePlan(
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import type { Metadata } from "next";
|
||||
import { notFound } from "next/navigation";
|
||||
import Link from "next/link";
|
||||
import { Mic2, Repeat } from "lucide-react";
|
||||
@@ -12,6 +13,17 @@ import { Card, CardContent } from "@/components/ui/card";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import type { StructuredScript } from "@/lib/ai/types";
|
||||
|
||||
export async function generateMetadata({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{ id: string }>;
|
||||
}): Promise<Metadata> {
|
||||
const { id } = await params;
|
||||
// Title only — this is an authed page and the route group is already noindex.
|
||||
const episode = await prisma.episode.findUnique({ where: { id }, select: { title: true } });
|
||||
return { title: episode?.title ?? "Episode" };
|
||||
}
|
||||
|
||||
export default async function EpisodePage({ params }: { params: Promise<{ id: string }> }) {
|
||||
const { id } = await params;
|
||||
const session = await requireAuth();
|
||||
@@ -33,12 +45,24 @@ export default async function EpisodePage({ params }: { params: Promise<{ id: st
|
||||
title={episode.title}
|
||||
description={`${episode.format.replace("_", "-").toLowerCase()} · ${episode.language.toUpperCase()} · ${episode.targetLengthMin} min`}
|
||||
action={
|
||||
!inProgress ? (
|
||||
!inProgress && !episode.moderatedAt ? (
|
||||
<EpisodeActions episodeId={episode.id} initialShareId={episode.shareId} />
|
||||
) : undefined
|
||||
}
|
||||
/>
|
||||
|
||||
{episode.moderatedAt ? (
|
||||
<div className="mb-6 rounded-2xl border border-destructive/30 bg-destructive/5 p-4">
|
||||
<p className="font-medium text-destructive">This episode was removed</p>
|
||||
<p className="mt-1 text-sm text-muted-foreground">
|
||||
It was reviewed against our Acceptable Use Policy and taken down on{" "}
|
||||
{episode.moderatedAt.toLocaleDateString()}. Its public link and downloads are
|
||||
disabled. If you think this was a mistake, reply to your support thread and we
|
||||
will take another look.
|
||||
</p>
|
||||
</div>
|
||||
) : null}
|
||||
|
||||
{episode.status === "FAILED" || inProgress ? (
|
||||
<GenerationProgress
|
||||
episodeId={episode.id}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import type { Metadata } from "next";
|
||||
import { notFound } from "next/navigation";
|
||||
import Link from "next/link";
|
||||
import { ArrowLeft } from "lucide-react";
|
||||
@@ -10,6 +11,8 @@ import { Button } from "@/components/ui/button";
|
||||
type Format = "blog" | "social_thread" | "newsletter";
|
||||
type Content = { title: string; body: string } | null;
|
||||
|
||||
export const metadata: Metadata = { title: "Repurpose episode" };
|
||||
|
||||
export default async function RepurposePage({ params }: { params: Promise<{ id: string }> }) {
|
||||
const { id } = await params;
|
||||
const session = await requireAuth();
|
||||
|
||||
@@ -432,13 +432,20 @@ export async function setEpisodeShareAction(
|
||||
|
||||
const episode = await prisma.episode.findUnique({
|
||||
where: { id: episodeId },
|
||||
select: { userId: true, shareId: true, status: true },
|
||||
select: { userId: true, shareId: true, status: true, moderatedAt: true },
|
||||
});
|
||||
if (!episode || (episode.userId !== session.user.id && session.user.role !== "admin")) {
|
||||
return { ok: false, error: "Not allowed." };
|
||||
}
|
||||
|
||||
if (enabled) {
|
||||
// An admin takedown must not be reversible by the owner simply re-sharing.
|
||||
if (episode.moderatedAt) {
|
||||
return {
|
||||
ok: false,
|
||||
error: "This episode was removed for a policy violation and can't be shared.",
|
||||
};
|
||||
}
|
||||
if (episode.status !== "READY") {
|
||||
return { ok: false, error: "Finish generating the episode before sharing it." };
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import type { Metadata } from "next";
|
||||
import Link from "next/link";
|
||||
import { Plus, Wrench } from "lucide-react";
|
||||
import { requireAuth } from "@/lib/auth/guards";
|
||||
@@ -12,10 +13,15 @@ import { ImpersonationBanner } from "@/components/app/impersonation-banner";
|
||||
import { ThemeProvider } from "@/components/providers/theme-provider";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Logo } from "@/components/ui/logo";
|
||||
import { NO_INDEX } from "@/lib/seo";
|
||||
|
||||
// Authed, DB-backed dashboard — never statically prerender.
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
// Authenticated surface — never indexable. Metadata merges down, so every route
|
||||
// in this group inherits `noindex, nofollow` unless it explicitly overrides it.
|
||||
export const metadata: Metadata = NO_INDEX;
|
||||
|
||||
export default async function AppLayout({ children }: { children: React.ReactNode }) {
|
||||
const session = await requireAuth();
|
||||
const activeOrgId = session.session.activeOrganizationId;
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import type { Metadata } from "next";
|
||||
import { notFound } from "next/navigation";
|
||||
import Link from "next/link";
|
||||
import { ArrowLeft } from "lucide-react";
|
||||
@@ -9,6 +10,17 @@ import { EpisodeStatusBadge } from "@/components/app/episode-status-badge";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Card, CardContent } from "@/components/ui/card";
|
||||
|
||||
export async function generateMetadata({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{ id: string }>;
|
||||
}): Promise<Metadata> {
|
||||
const { id } = await params;
|
||||
// Title only — this is an authed page and the route group is already noindex.
|
||||
const series = await prisma.series.findUnique({ where: { id }, select: { title: true } });
|
||||
return { title: series?.title ?? "Series" };
|
||||
}
|
||||
|
||||
export default async function SeriesDetailPage({ params }: { params: Promise<{ id: string }> }) {
|
||||
const { id } = await params;
|
||||
const session = await requireAuth();
|
||||
|
||||
@@ -13,6 +13,7 @@ import type { UsageMetric } from "@/lib/billing/plans";
|
||||
import { FORMAT_SPEAKERS } from "@/lib/episodes/options";
|
||||
import { DEFAULT_VOICE_IDS, VOICE_CATALOG } from "@/lib/ai/voices";
|
||||
import { isFlagEnabled } from "@/lib/flags";
|
||||
import { rateLimit, LIMITS } from "@/lib/ratelimit";
|
||||
|
||||
const createSchema = z.object({
|
||||
theme: z.string().min(5).max(500),
|
||||
@@ -30,6 +31,16 @@ export async function createSeriesAction(
|
||||
if (!(await subjectHasFeature(session.user.id, "series_generator", session.session.activeOrganizationId))) {
|
||||
return { ok: false, error: "The series generator requires the Pro plan." };
|
||||
}
|
||||
|
||||
// planSeason() below is an uncapped GPT-4o completion that is NOT metered
|
||||
// against a monthly quota (unlike script/audio/art), so the rate limit is the
|
||||
// only thing bounding AI spend here. Keep it tight — a season plan is a rare,
|
||||
// deliberate action, so an hourly bucket is the right shape.
|
||||
const rl = await rateLimit("series-plan", session.user.id, LIMITS.seriesPlan);
|
||||
if (!rl.ok) {
|
||||
return { ok: false, error: `Too many series plans. Try again in ${Math.ceil(rl.retryAfterSec! / 60)}m.` };
|
||||
}
|
||||
|
||||
if (!(await isFlagEnabled("episode_generation_enabled"))) {
|
||||
return { ok: false, error: "Generation is temporarily paused. Please try again shortly." };
|
||||
}
|
||||
@@ -60,6 +71,11 @@ export async function generateFromSeriesAction(
|
||||
const session = await getServerSession();
|
||||
if (!session) return { ok: false, error: "You must be signed in." };
|
||||
|
||||
const rl = await rateLimit("generation", session.user.id, LIMITS.generation);
|
||||
if (!rl.ok) {
|
||||
return { ok: false, error: `Too many requests. Try again in ${rl.retryAfterSec}s.` };
|
||||
}
|
||||
|
||||
if (!(await isFlagEnabled("episode_generation_enabled"))) {
|
||||
return { ok: false, error: "Episode generation is temporarily paused. Please try again shortly." };
|
||||
}
|
||||
|
||||
@@ -75,6 +75,193 @@ export async function savePreferencesAction(
|
||||
* cascades to sessions, accounts, episodes, series, usage and preferences. The
|
||||
* client signs out after a successful response.
|
||||
*/
|
||||
export interface ActiveSession {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
expiresAt: string;
|
||||
ipAddress: string | null;
|
||||
userAgent: string | null;
|
||||
current: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* List the signed-in devices for the current user.
|
||||
*
|
||||
* Sessions are read straight from the DB (not the cookie cache) so a revoked
|
||||
* session disappears immediately rather than lingering for the 60s cache window.
|
||||
*/
|
||||
export async function listSessionsAction(): Promise<{
|
||||
ok: boolean;
|
||||
error?: string;
|
||||
sessions?: ActiveSession[];
|
||||
}> {
|
||||
const session = await getServerSession();
|
||||
if (!session) return { ok: false, error: "You must be signed in." };
|
||||
|
||||
const rows = await prisma.session.findMany({
|
||||
where: { userId: session.user.id, expiresAt: { gt: new Date() } },
|
||||
orderBy: { createdAt: "desc" },
|
||||
select: {
|
||||
id: true,
|
||||
token: true,
|
||||
createdAt: true,
|
||||
expiresAt: true,
|
||||
ipAddress: true,
|
||||
userAgent: true,
|
||||
},
|
||||
});
|
||||
|
||||
return {
|
||||
ok: true,
|
||||
sessions: rows.map((r) => ({
|
||||
id: r.id,
|
||||
createdAt: r.createdAt.toISOString(),
|
||||
expiresAt: r.expiresAt.toISOString(),
|
||||
ipAddress: r.ipAddress,
|
||||
userAgent: r.userAgent,
|
||||
// Compare on the session token, never on the id: the token is what the
|
||||
// cookie actually carries, so this is the reliable "this device" marker.
|
||||
current: r.token === session.session.token,
|
||||
})),
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Revoke one of the current user's sessions (sign out that device).
|
||||
*
|
||||
* Scoped by userId so a session id belonging to someone else can never be
|
||||
* revoked, and the current session is protected — signing yourself out from
|
||||
* here would be indistinguishable from a bug. Use the normal sign-out for that.
|
||||
*/
|
||||
export async function revokeSessionAction(
|
||||
sessionId: string
|
||||
): Promise<{ ok: boolean; error?: string }> {
|
||||
const session = await getServerSession();
|
||||
if (!session) return { ok: false, error: "You must be signed in." };
|
||||
|
||||
const target = await prisma.session.findFirst({
|
||||
where: { id: sessionId, userId: session.user.id },
|
||||
select: { id: true, token: true },
|
||||
});
|
||||
if (!target) return { ok: false, error: "Session not found." };
|
||||
if (target.token === session.session.token) {
|
||||
return { ok: false, error: "That's your current device — use Sign out instead." };
|
||||
}
|
||||
|
||||
await prisma.session.delete({ where: { id: target.id } });
|
||||
revalidatePath("/settings");
|
||||
return { ok: true };
|
||||
}
|
||||
|
||||
/** Sign out every other device, keeping the current one. */
|
||||
export async function revokeOtherSessionsAction(): Promise<{
|
||||
ok: boolean;
|
||||
error?: string;
|
||||
count?: number;
|
||||
}> {
|
||||
const session = await getServerSession();
|
||||
if (!session) return { ok: false, error: "You must be signed in." };
|
||||
|
||||
const res = await prisma.session.deleteMany({
|
||||
where: { userId: session.user.id, token: { not: session.session.token } },
|
||||
});
|
||||
revalidatePath("/settings");
|
||||
return { ok: true, count: res.count };
|
||||
}
|
||||
|
||||
/**
|
||||
* Export everything we hold about the current user, as JSON (GDPR access
|
||||
* request, self-serve).
|
||||
*
|
||||
* Deliberately excludes credentials: the `account` table holds password hashes
|
||||
* and OAuth tokens, and nothing there is user-facing data. Media is referenced
|
||||
* by storage key rather than inlined so the payload stays a reasonable size.
|
||||
*/
|
||||
export async function exportMyDataAction(): Promise<{
|
||||
ok: boolean;
|
||||
error?: string;
|
||||
json?: string;
|
||||
}> {
|
||||
const session = await getServerSession();
|
||||
if (!session) return { ok: false, error: "You must be signed in." };
|
||||
const userId = session.user.id;
|
||||
|
||||
const [user, preferences, episodes, series, subscriptions, usage, apiKeys, memberships] =
|
||||
await Promise.all([
|
||||
prisma.user.findUnique({
|
||||
where: { id: userId },
|
||||
select: {
|
||||
id: true,
|
||||
name: true,
|
||||
email: true,
|
||||
emailVerified: true,
|
||||
image: true,
|
||||
createdAt: true,
|
||||
updatedAt: true,
|
||||
},
|
||||
}),
|
||||
prisma.userPreferences.findUnique({ where: { userId } }),
|
||||
prisma.episode.findMany({
|
||||
where: { userId },
|
||||
orderBy: { createdAt: "desc" },
|
||||
select: {
|
||||
id: true,
|
||||
title: true,
|
||||
topic: true,
|
||||
tone: true,
|
||||
format: true,
|
||||
language: true,
|
||||
targetLengthMin: true,
|
||||
status: true,
|
||||
shareId: true,
|
||||
createdAt: true,
|
||||
script: { select: { content: true } },
|
||||
audioAsset: { select: { storageKey: true, durationSec: true, format: true } },
|
||||
coverArt: { select: { storageKey: true } },
|
||||
repurposed: { select: { type: true, content: true, createdAt: true } },
|
||||
},
|
||||
}),
|
||||
prisma.series.findMany({ where: { userId } }),
|
||||
prisma.subscription.findMany({
|
||||
where: { referenceId: userId },
|
||||
select: {
|
||||
plan: true,
|
||||
status: true,
|
||||
billingInterval: true,
|
||||
provider: true,
|
||||
periodStart: true,
|
||||
periodEnd: true,
|
||||
cancelAtPeriodEnd: true,
|
||||
createdAt: true,
|
||||
},
|
||||
}),
|
||||
prisma.usageRecord.findMany({ where: { ownerId: userId, ownerType: "user" } }),
|
||||
prisma.apiKey.findMany({
|
||||
where: { userId },
|
||||
select: { id: true, name: true, createdAt: true, revokedAt: true },
|
||||
}),
|
||||
prisma.member.findMany({
|
||||
where: { userId },
|
||||
select: { role: true, createdAt: true, organization: { select: { name: true } } },
|
||||
}),
|
||||
]);
|
||||
|
||||
const payload = {
|
||||
exportedAt: new Date().toISOString(),
|
||||
note: "Credentials and authentication tokens are intentionally excluded. Audio and cover art are referenced by storage key; download them from each episode page.",
|
||||
user,
|
||||
preferences,
|
||||
episodes,
|
||||
series,
|
||||
subscriptions,
|
||||
usage,
|
||||
apiKeys,
|
||||
memberships,
|
||||
};
|
||||
|
||||
return { ok: true, json: JSON.stringify(payload, null, 2) };
|
||||
}
|
||||
|
||||
export async function deleteAccountAction(
|
||||
confirmEmail: string
|
||||
): Promise<{ ok: boolean; error?: string }> {
|
||||
|
||||
@@ -93,6 +93,107 @@ export async function inviteMemberAction(
|
||||
return { ok: true };
|
||||
}
|
||||
|
||||
/**
|
||||
* Shared authorization for every workspace mutation: the caller must be an
|
||||
* owner/admin of THIS organization. Returns the caller's role, or an error.
|
||||
*/
|
||||
async function requireOrgAdmin(
|
||||
organizationId: string
|
||||
): Promise<{ ok: true; userId: string; role: string } | { ok: false; error: string }> {
|
||||
const session = await getServerSession();
|
||||
if (!session) return { ok: false, error: "You must be signed in." };
|
||||
const member = await prisma.member.findFirst({
|
||||
where: { organizationId, userId: session.user.id },
|
||||
select: { role: true },
|
||||
});
|
||||
if (!member || !["owner", "admin"].includes(member.role)) {
|
||||
return { ok: false, error: "Only workspace owners can manage members." };
|
||||
}
|
||||
return { ok: true, userId: session.user.id, role: member.role };
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove a member, freeing their seat.
|
||||
*
|
||||
* Guards: only owner/admin may remove; nobody may remove themselves (that would
|
||||
* orphan the workspace from the UI); and the last remaining owner is protected,
|
||||
* otherwise a workspace can be left with no one able to administer it.
|
||||
*/
|
||||
export async function removeMemberAction(
|
||||
organizationId: string,
|
||||
memberId: string
|
||||
): Promise<{ ok: boolean; error?: string }> {
|
||||
const auth = await requireOrgAdmin(organizationId);
|
||||
if (!auth.ok) return { ok: false, error: auth.error };
|
||||
|
||||
const target = await prisma.member.findFirst({
|
||||
where: { id: memberId, organizationId },
|
||||
select: { id: true, userId: true, role: true },
|
||||
});
|
||||
if (!target) return { ok: false, error: "Member not found." };
|
||||
if (target.userId === auth.userId) {
|
||||
return { ok: false, error: "You can't remove yourself from the workspace." };
|
||||
}
|
||||
if (target.role === "owner") {
|
||||
const owners = await prisma.member.count({ where: { organizationId, role: "owner" } });
|
||||
if (owners <= 1) return { ok: false, error: "The workspace must keep at least one owner." };
|
||||
}
|
||||
|
||||
await prisma.member.delete({ where: { id: target.id } });
|
||||
revalidatePath("/team");
|
||||
return { ok: true };
|
||||
}
|
||||
|
||||
/** Change a member's workspace role. Same last-owner protection as removal. */
|
||||
export async function updateMemberRoleAction(
|
||||
organizationId: string,
|
||||
memberId: string,
|
||||
role: "owner" | "admin" | "member"
|
||||
): Promise<{ ok: boolean; error?: string }> {
|
||||
const auth = await requireOrgAdmin(organizationId);
|
||||
if (!auth.ok) return { ok: false, error: auth.error };
|
||||
|
||||
// `role` is client-supplied and only TS-typed — validate it at runtime.
|
||||
const parsedRole = z.enum(["owner", "admin", "member"]).safeParse(role);
|
||||
if (!parsedRole.success) return { ok: false, error: "Invalid role." };
|
||||
|
||||
const target = await prisma.member.findFirst({
|
||||
where: { id: memberId, organizationId },
|
||||
select: { id: true, userId: true, role: true },
|
||||
});
|
||||
if (!target) return { ok: false, error: "Member not found." };
|
||||
if (target.role === "owner" && parsedRole.data !== "owner") {
|
||||
const owners = await prisma.member.count({ where: { organizationId, role: "owner" } });
|
||||
if (owners <= 1) return { ok: false, error: "The workspace must keep at least one owner." };
|
||||
}
|
||||
|
||||
await prisma.member.update({ where: { id: target.id }, data: { role: parsedRole.data } });
|
||||
revalidatePath("/team");
|
||||
return { ok: true };
|
||||
}
|
||||
|
||||
/**
|
||||
* Revoke a pending invitation, freeing the seat it was holding.
|
||||
* Scoped to the organization so an id from another workspace can't be cancelled.
|
||||
*/
|
||||
export async function revokeInvitationAction(
|
||||
organizationId: string,
|
||||
invitationId: string
|
||||
): Promise<{ ok: boolean; error?: string }> {
|
||||
const auth = await requireOrgAdmin(organizationId);
|
||||
if (!auth.ok) return { ok: false, error: auth.error };
|
||||
|
||||
const invite = await prisma.invitation.findFirst({
|
||||
where: { id: invitationId, organizationId, status: "pending" },
|
||||
select: { id: true },
|
||||
});
|
||||
if (!invite) return { ok: false, error: "Invitation not found." };
|
||||
|
||||
await prisma.invitation.update({ where: { id: invite.id }, data: { status: "canceled" } });
|
||||
revalidatePath("/team");
|
||||
return { ok: true };
|
||||
}
|
||||
|
||||
export async function saveBrandingAction(
|
||||
organizationId: string,
|
||||
data: z.infer<typeof brandingSchema>
|
||||
|
||||
+27
-1
@@ -43,7 +43,31 @@ export default async function TeamPage() {
|
||||
});
|
||||
const org = membership?.organization ?? null;
|
||||
const members =
|
||||
org?.members.map((m) => ({ id: m.id, name: m.user.name, email: m.user.email, role: m.role })) ?? [];
|
||||
org?.members.map((m) => ({
|
||||
id: m.id,
|
||||
userId: m.userId,
|
||||
name: m.user.name,
|
||||
email: m.user.email,
|
||||
role: m.role,
|
||||
})) ?? [];
|
||||
|
||||
// Pending invitations hold a seat until accepted or revoked, so they belong on
|
||||
// this screen next to members — otherwise a workspace can look under-capacity
|
||||
// while every seat is actually spoken for.
|
||||
const invitations = org
|
||||
? (
|
||||
await prisma.invitation.findMany({
|
||||
where: { organizationId: org.id, status: "pending" },
|
||||
orderBy: { expiresAt: "desc" },
|
||||
select: { id: true, email: true, role: true, expiresAt: true },
|
||||
})
|
||||
).map((i) => ({
|
||||
id: i.id,
|
||||
email: i.email,
|
||||
role: i.role ?? "member",
|
||||
expiresAt: i.expiresAt.toISOString(),
|
||||
}))
|
||||
: [];
|
||||
|
||||
return (
|
||||
<>
|
||||
@@ -51,6 +75,8 @@ export default async function TeamPage() {
|
||||
<TeamClient
|
||||
org={org ? { id: org.id, name: org.name } : null}
|
||||
members={members}
|
||||
invitations={invitations}
|
||||
currentUserId={session.user.id}
|
||||
branding={
|
||||
org?.branding
|
||||
? {
|
||||
|
||||
Reference in New Issue
Block a user