feat(admin): per-port email/Documenso/branding/reminder settings + invitations
Centralizes everything operators need to configure into the admin panel,
each setting per-port with env fallback.
New admin pages
- /admin landing page linking to every admin section as a card
- /admin/email FROM name+address, reply-to, signature/footer HTML,
optional SMTP host/port/user/pass override
- /admin/documenso API URL+key override, EOI Documenso template ID,
default EOI pathway (documenso-template vs inapp),
"Test connection" button
- /admin/branding logo URL, primary color, app name, email
header/footer HTML
- /admin/reminders port-level defaults for new interests +
port-wide daily-digest delivery window
- /admin/invitations send / list / resend / revoke CRM invitations
Per-user reminder digest
- /notifications/preferences gains a Reminder digest card:
immediate / daily / weekly / off, with HH:MM, day-of-week,
IANA timezone fields. Stored in user_profiles.preferences.reminders.
Plumbing
- port-config.ts typed accessors (getPortEmailConfig, getPortDocumensoConfig,
getPortBrandingConfig, getPortReminderConfig) — settings → env fallback.
- sendEmail accepts optional portId; resolves From/SMTP from settings
when supplied.
- documensoFetch + downloadSignedPdf accept optional portId; each public
function takes it through. checkDocumensoHealth() backs the test button.
- crm-invite.service gains listCrmInvites / revokeCrmInvite / resendCrmInvite
with audit-log entries (revoke_invite, resend_invite added to AuditAction).
- AdminLandingPage card grid + shared SettingsFormCard component to remove
per-page form boilerplate.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 23:21:54 +02:00
|
|
|
import { and, desc, eq, gt, isNull } from 'drizzle-orm';
|
feat(platform): residential module + admin UI + reliability fixes
Residential platform
- New schema: residentialClients, residentialInterests (separate from
marina/yacht clients) with migration 0010
- Service layer with CRUD + audit + sockets + per-port portal toggle
- v1 + public API routes (/api/v1/residential/*, /api/public/residential-inquiries)
- List + detail pages with inline editing for clients and interests
- Per-user residentialAccess toggle on userPortRoles (migration 0011)
- Permission keys: residential_clients, residential_interests
- Sidebar nav + role form integration
- Smoke spec covering page loads, UI create flow, public endpoint
Admin & shared UI
- Admin → Forms (form templates CRUD) with validators + service
- Notification preferences page (in-app + email per type)
- Email composition + accounts list + threads view
- Branded auth shell shared across CRM + portal auth surfaces
- Inline editing extended to yacht/company/interest detail pages
- InlineTagEditor + per-entity tags endpoints (yachts, companies)
- Notes service polymorphic across clients/interests/yachts/companies
- Client list columns: yachtCount + companyCount badges
- Reservation file-download via presigned URL (replaces stale <a href>)
Route handler refactor
- Extracted yachts/companies/berths reservation handlers to sibling
handlers.ts files (Next.js 15 route.ts only allows specific exports)
Reliability fixes
- apiFetch double-stringify bug fixed across 13 components
(apiFetch already JSON.stringifies its body; passing a stringified
body produced double-encoded JSON which failed zod validation)
- SocketProvider gated behind useSyncExternalStore-based mount check
to avoid useSession() SSR crashes under React 19 + Next 15
- apiFetch falls back to URL-pathname → port-id resolution when the
Zustand store hasn't hydrated yet (fresh contexts, e2e tests)
- CRM invite flow (schema, service, route, email, dev script)
- Dashboard route → [portSlug]/dashboard/page.tsx + redirect
- Document the dev-server restart-after-migration gotcha in CLAUDE.md
Tests
- 5-case residential smoke spec
- Integration test updates for new service signatures
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 21:54:32 +02:00
|
|
|
import postgres from 'postgres';
|
|
|
|
|
|
|
|
|
|
import { auth } from '@/lib/auth';
|
feat(admin): per-port email/Documenso/branding/reminder settings + invitations
Centralizes everything operators need to configure into the admin panel,
each setting per-port with env fallback.
New admin pages
- /admin landing page linking to every admin section as a card
- /admin/email FROM name+address, reply-to, signature/footer HTML,
optional SMTP host/port/user/pass override
- /admin/documenso API URL+key override, EOI Documenso template ID,
default EOI pathway (documenso-template vs inapp),
"Test connection" button
- /admin/branding logo URL, primary color, app name, email
header/footer HTML
- /admin/reminders port-level defaults for new interests +
port-wide daily-digest delivery window
- /admin/invitations send / list / resend / revoke CRM invitations
Per-user reminder digest
- /notifications/preferences gains a Reminder digest card:
immediate / daily / weekly / off, with HH:MM, day-of-week,
IANA timezone fields. Stored in user_profiles.preferences.reminders.
Plumbing
- port-config.ts typed accessors (getPortEmailConfig, getPortDocumensoConfig,
getPortBrandingConfig, getPortReminderConfig) — settings → env fallback.
- sendEmail accepts optional portId; resolves From/SMTP from settings
when supplied.
- documensoFetch + downloadSignedPdf accept optional portId; each public
function takes it through. checkDocumensoHealth() backs the test button.
- crm-invite.service gains listCrmInvites / revokeCrmInvite / resendCrmInvite
with audit-log entries (revoke_invite, resend_invite added to AuditAction).
- AdminLandingPage card grid + shared SettingsFormCard component to remove
per-page form boilerplate.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 23:21:54 +02:00
|
|
|
import { createAuditLog } from '@/lib/audit';
|
feat(platform): residential module + admin UI + reliability fixes
Residential platform
- New schema: residentialClients, residentialInterests (separate from
marina/yacht clients) with migration 0010
- Service layer with CRUD + audit + sockets + per-port portal toggle
- v1 + public API routes (/api/v1/residential/*, /api/public/residential-inquiries)
- List + detail pages with inline editing for clients and interests
- Per-user residentialAccess toggle on userPortRoles (migration 0011)
- Permission keys: residential_clients, residential_interests
- Sidebar nav + role form integration
- Smoke spec covering page loads, UI create flow, public endpoint
Admin & shared UI
- Admin → Forms (form templates CRUD) with validators + service
- Notification preferences page (in-app + email per type)
- Email composition + accounts list + threads view
- Branded auth shell shared across CRM + portal auth surfaces
- Inline editing extended to yacht/company/interest detail pages
- InlineTagEditor + per-entity tags endpoints (yachts, companies)
- Notes service polymorphic across clients/interests/yachts/companies
- Client list columns: yachtCount + companyCount badges
- Reservation file-download via presigned URL (replaces stale <a href>)
Route handler refactor
- Extracted yachts/companies/berths reservation handlers to sibling
handlers.ts files (Next.js 15 route.ts only allows specific exports)
Reliability fixes
- apiFetch double-stringify bug fixed across 13 components
(apiFetch already JSON.stringifies its body; passing a stringified
body produced double-encoded JSON which failed zod validation)
- SocketProvider gated behind useSyncExternalStore-based mount check
to avoid useSession() SSR crashes under React 19 + Next 15
- apiFetch falls back to URL-pathname → port-id resolution when the
Zustand store hasn't hydrated yet (fresh contexts, e2e tests)
- CRM invite flow (schema, service, route, email, dev script)
- Dashboard route → [portSlug]/dashboard/page.tsx + redirect
- Document the dev-server restart-after-migration gotcha in CLAUDE.md
Tests
- 5-case residential smoke spec
- Integration test updates for new service signatures
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 21:54:32 +02:00
|
|
|
import { db } from '@/lib/db';
|
|
|
|
|
import { crmUserInvites } from '@/lib/db/schema/crm-invites';
|
|
|
|
|
import { userProfiles } from '@/lib/db/schema/users';
|
|
|
|
|
import { env } from '@/lib/env';
|
|
|
|
|
import { sendEmail } from '@/lib/email';
|
|
|
|
|
import { crmInviteEmail } from '@/lib/email/templates/crm-invite';
|
|
|
|
|
import { ConflictError, NotFoundError, ValidationError } from '@/lib/errors';
|
|
|
|
|
import { hashToken, mintToken } from '@/lib/portal/passwords';
|
|
|
|
|
|
feat(admin): per-port email/Documenso/branding/reminder settings + invitations
Centralizes everything operators need to configure into the admin panel,
each setting per-port with env fallback.
New admin pages
- /admin landing page linking to every admin section as a card
- /admin/email FROM name+address, reply-to, signature/footer HTML,
optional SMTP host/port/user/pass override
- /admin/documenso API URL+key override, EOI Documenso template ID,
default EOI pathway (documenso-template vs inapp),
"Test connection" button
- /admin/branding logo URL, primary color, app name, email
header/footer HTML
- /admin/reminders port-level defaults for new interests +
port-wide daily-digest delivery window
- /admin/invitations send / list / resend / revoke CRM invitations
Per-user reminder digest
- /notifications/preferences gains a Reminder digest card:
immediate / daily / weekly / off, with HH:MM, day-of-week,
IANA timezone fields. Stored in user_profiles.preferences.reminders.
Plumbing
- port-config.ts typed accessors (getPortEmailConfig, getPortDocumensoConfig,
getPortBrandingConfig, getPortReminderConfig) — settings → env fallback.
- sendEmail accepts optional portId; resolves From/SMTP from settings
when supplied.
- documensoFetch + downloadSignedPdf accept optional portId; each public
function takes it through. checkDocumensoHealth() backs the test button.
- crm-invite.service gains listCrmInvites / revokeCrmInvite / resendCrmInvite
with audit-log entries (revoke_invite, resend_invite added to AuditAction).
- AdminLandingPage card grid + shared SettingsFormCard component to remove
per-page form boilerplate.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 23:21:54 +02:00
|
|
|
interface AuditMeta {
|
|
|
|
|
userId: string;
|
|
|
|
|
portId: string;
|
|
|
|
|
ipAddress: string;
|
|
|
|
|
userAgent: string;
|
|
|
|
|
}
|
|
|
|
|
|
feat(platform): residential module + admin UI + reliability fixes
Residential platform
- New schema: residentialClients, residentialInterests (separate from
marina/yacht clients) with migration 0010
- Service layer with CRUD + audit + sockets + per-port portal toggle
- v1 + public API routes (/api/v1/residential/*, /api/public/residential-inquiries)
- List + detail pages with inline editing for clients and interests
- Per-user residentialAccess toggle on userPortRoles (migration 0011)
- Permission keys: residential_clients, residential_interests
- Sidebar nav + role form integration
- Smoke spec covering page loads, UI create flow, public endpoint
Admin & shared UI
- Admin → Forms (form templates CRUD) with validators + service
- Notification preferences page (in-app + email per type)
- Email composition + accounts list + threads view
- Branded auth shell shared across CRM + portal auth surfaces
- Inline editing extended to yacht/company/interest detail pages
- InlineTagEditor + per-entity tags endpoints (yachts, companies)
- Notes service polymorphic across clients/interests/yachts/companies
- Client list columns: yachtCount + companyCount badges
- Reservation file-download via presigned URL (replaces stale <a href>)
Route handler refactor
- Extracted yachts/companies/berths reservation handlers to sibling
handlers.ts files (Next.js 15 route.ts only allows specific exports)
Reliability fixes
- apiFetch double-stringify bug fixed across 13 components
(apiFetch already JSON.stringifies its body; passing a stringified
body produced double-encoded JSON which failed zod validation)
- SocketProvider gated behind useSyncExternalStore-based mount check
to avoid useSession() SSR crashes under React 19 + Next 15
- apiFetch falls back to URL-pathname → port-id resolution when the
Zustand store hasn't hydrated yet (fresh contexts, e2e tests)
- CRM invite flow (schema, service, route, email, dev script)
- Dashboard route → [portSlug]/dashboard/page.tsx + redirect
- Document the dev-server restart-after-migration gotcha in CLAUDE.md
Tests
- 5-case residential smoke spec
- Integration test updates for new service signatures
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 21:54:32 +02:00
|
|
|
const INVITE_TTL_HOURS = 72;
|
|
|
|
|
const MIN_PASSWORD_LENGTH = 9;
|
|
|
|
|
|
|
|
|
|
export async function createCrmInvite(args: {
|
|
|
|
|
email: string;
|
|
|
|
|
name?: string;
|
|
|
|
|
isSuperAdmin?: boolean;
|
|
|
|
|
}): Promise<{ inviteId: string; link: string }> {
|
|
|
|
|
const email = args.email.toLowerCase().trim();
|
|
|
|
|
const isSuperAdmin = args.isSuperAdmin ?? false;
|
|
|
|
|
|
|
|
|
|
// Reject if there's already a better-auth user with this email — they
|
|
|
|
|
// should reset their password instead.
|
|
|
|
|
const sql = postgres(env.DATABASE_URL);
|
|
|
|
|
try {
|
|
|
|
|
const existing = await sql<{ id: string }[]>`
|
|
|
|
|
SELECT id FROM "user" WHERE email = ${email} LIMIT 1
|
|
|
|
|
`;
|
|
|
|
|
if (existing.length > 0) {
|
|
|
|
|
throw new ConflictError(`A CRM user already exists for ${email}`);
|
|
|
|
|
}
|
|
|
|
|
} finally {
|
|
|
|
|
await sql.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { raw, hash } = mintToken();
|
|
|
|
|
const expiresAt = new Date(Date.now() + INVITE_TTL_HOURS * 3600 * 1000);
|
|
|
|
|
|
|
|
|
|
const [row] = await db
|
|
|
|
|
.insert(crmUserInvites)
|
|
|
|
|
.values({
|
|
|
|
|
email,
|
|
|
|
|
name: args.name ?? null,
|
|
|
|
|
tokenHash: hash,
|
|
|
|
|
isSuperAdmin,
|
|
|
|
|
expiresAt,
|
|
|
|
|
})
|
|
|
|
|
.returning({ id: crmUserInvites.id });
|
|
|
|
|
|
|
|
|
|
if (!row) throw new Error('Failed to create CRM invite');
|
|
|
|
|
|
|
|
|
|
const link = `${env.APP_URL}/set-password?token=${raw}`;
|
|
|
|
|
const { subject, html, text } = crmInviteEmail({
|
|
|
|
|
link,
|
|
|
|
|
ttlHours: INVITE_TTL_HOURS,
|
|
|
|
|
recipientName: args.name,
|
|
|
|
|
isSuperAdmin,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await sendEmail(email, subject, html, undefined, text);
|
|
|
|
|
|
|
|
|
|
return { inviteId: row.id, link };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function consumeCrmInvite(args: {
|
|
|
|
|
token: string;
|
|
|
|
|
password: string;
|
|
|
|
|
}): Promise<{ userId: string; email: string }> {
|
|
|
|
|
if (args.password.length < MIN_PASSWORD_LENGTH) {
|
|
|
|
|
throw new ValidationError(`Password must be at least ${MIN_PASSWORD_LENGTH} characters`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const tokenHash = hashToken(args.token);
|
|
|
|
|
|
|
|
|
|
const invite = await db.query.crmUserInvites.findFirst({
|
|
|
|
|
where: and(
|
|
|
|
|
eq(crmUserInvites.tokenHash, tokenHash),
|
|
|
|
|
isNull(crmUserInvites.usedAt),
|
|
|
|
|
gt(crmUserInvites.expiresAt, new Date()),
|
|
|
|
|
),
|
|
|
|
|
});
|
|
|
|
|
if (!invite) {
|
|
|
|
|
throw new NotFoundError('Invite link is invalid or has expired');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create the better-auth user with the chosen password.
|
|
|
|
|
const result = await auth.api.signUpEmail({
|
|
|
|
|
body: {
|
|
|
|
|
email: invite.email,
|
|
|
|
|
password: args.password,
|
|
|
|
|
name: invite.name ?? invite.email.split('@')[0] ?? 'User',
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
const userId = result.user.id;
|
|
|
|
|
|
|
|
|
|
// Create the matching user_profiles extension row.
|
|
|
|
|
await db
|
|
|
|
|
.insert(userProfiles)
|
|
|
|
|
.values({
|
|
|
|
|
id: crypto.randomUUID(),
|
|
|
|
|
userId,
|
|
|
|
|
displayName: invite.name ?? invite.email,
|
|
|
|
|
isSuperAdmin: invite.isSuperAdmin,
|
|
|
|
|
isActive: true,
|
|
|
|
|
preferences: {},
|
|
|
|
|
})
|
|
|
|
|
.onConflictDoNothing();
|
|
|
|
|
|
|
|
|
|
await db
|
|
|
|
|
.update(crmUserInvites)
|
|
|
|
|
.set({ usedAt: new Date() })
|
|
|
|
|
.where(eq(crmUserInvites.id, invite.id));
|
|
|
|
|
|
|
|
|
|
return { userId, email: invite.email };
|
|
|
|
|
}
|
feat(admin): per-port email/Documenso/branding/reminder settings + invitations
Centralizes everything operators need to configure into the admin panel,
each setting per-port with env fallback.
New admin pages
- /admin landing page linking to every admin section as a card
- /admin/email FROM name+address, reply-to, signature/footer HTML,
optional SMTP host/port/user/pass override
- /admin/documenso API URL+key override, EOI Documenso template ID,
default EOI pathway (documenso-template vs inapp),
"Test connection" button
- /admin/branding logo URL, primary color, app name, email
header/footer HTML
- /admin/reminders port-level defaults for new interests +
port-wide daily-digest delivery window
- /admin/invitations send / list / resend / revoke CRM invitations
Per-user reminder digest
- /notifications/preferences gains a Reminder digest card:
immediate / daily / weekly / off, with HH:MM, day-of-week,
IANA timezone fields. Stored in user_profiles.preferences.reminders.
Plumbing
- port-config.ts typed accessors (getPortEmailConfig, getPortDocumensoConfig,
getPortBrandingConfig, getPortReminderConfig) — settings → env fallback.
- sendEmail accepts optional portId; resolves From/SMTP from settings
when supplied.
- documensoFetch + downloadSignedPdf accept optional portId; each public
function takes it through. checkDocumensoHealth() backs the test button.
- crm-invite.service gains listCrmInvites / revokeCrmInvite / resendCrmInvite
with audit-log entries (revoke_invite, resend_invite added to AuditAction).
- AdminLandingPage card grid + shared SettingsFormCard component to remove
per-page form boilerplate.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 23:21:54 +02:00
|
|
|
|
|
|
|
|
// ─── Admin operations ────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
export interface InviteRow {
|
|
|
|
|
id: string;
|
|
|
|
|
email: string;
|
|
|
|
|
name: string | null;
|
|
|
|
|
isSuperAdmin: boolean;
|
|
|
|
|
expiresAt: Date;
|
|
|
|
|
usedAt: Date | null;
|
|
|
|
|
createdAt: Date;
|
|
|
|
|
status: 'pending' | 'accepted' | 'expired';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function listCrmInvites(): Promise<InviteRow[]> {
|
|
|
|
|
const rows = await db
|
|
|
|
|
.select({
|
|
|
|
|
id: crmUserInvites.id,
|
|
|
|
|
email: crmUserInvites.email,
|
|
|
|
|
name: crmUserInvites.name,
|
|
|
|
|
isSuperAdmin: crmUserInvites.isSuperAdmin,
|
|
|
|
|
expiresAt: crmUserInvites.expiresAt,
|
|
|
|
|
usedAt: crmUserInvites.usedAt,
|
|
|
|
|
createdAt: crmUserInvites.createdAt,
|
|
|
|
|
})
|
|
|
|
|
.from(crmUserInvites)
|
|
|
|
|
.orderBy(desc(crmUserInvites.createdAt))
|
|
|
|
|
.limit(200);
|
|
|
|
|
|
|
|
|
|
const now = Date.now();
|
|
|
|
|
return rows.map((r) => {
|
|
|
|
|
let status: InviteRow['status'];
|
|
|
|
|
if (r.usedAt) status = 'accepted';
|
|
|
|
|
else if (r.expiresAt.getTime() < now) status = 'expired';
|
|
|
|
|
else status = 'pending';
|
|
|
|
|
return { ...r, status };
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function revokeCrmInvite(inviteId: string, meta: AuditMeta): Promise<void> {
|
|
|
|
|
const invite = await db.query.crmUserInvites.findFirst({
|
|
|
|
|
where: eq(crmUserInvites.id, inviteId),
|
|
|
|
|
});
|
|
|
|
|
if (!invite) throw new NotFoundError('Invite');
|
|
|
|
|
if (invite.usedAt) throw new ConflictError('Invite already accepted — cannot revoke');
|
|
|
|
|
|
|
|
|
|
// Force expiration; tokenHash stays in place so any in-flight click fails
|
|
|
|
|
// the `expiresAt > now` check at consume time.
|
|
|
|
|
await db
|
|
|
|
|
.update(crmUserInvites)
|
|
|
|
|
.set({ expiresAt: new Date(0) })
|
|
|
|
|
.where(eq(crmUserInvites.id, inviteId));
|
|
|
|
|
|
|
|
|
|
void createAuditLog({
|
|
|
|
|
userId: meta.userId,
|
|
|
|
|
portId: meta.portId,
|
|
|
|
|
action: 'revoke_invite',
|
|
|
|
|
entityType: 'crm_invite',
|
|
|
|
|
entityId: inviteId,
|
|
|
|
|
metadata: { email: invite.email },
|
|
|
|
|
ipAddress: meta.ipAddress,
|
|
|
|
|
userAgent: meta.userAgent,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function resendCrmInvite(
|
|
|
|
|
inviteId: string,
|
|
|
|
|
meta: AuditMeta,
|
|
|
|
|
): Promise<{ link: string }> {
|
|
|
|
|
const invite = await db.query.crmUserInvites.findFirst({
|
|
|
|
|
where: eq(crmUserInvites.id, inviteId),
|
|
|
|
|
});
|
|
|
|
|
if (!invite) throw new NotFoundError('Invite');
|
|
|
|
|
if (invite.usedAt) throw new ConflictError('Invite already accepted — nothing to resend');
|
|
|
|
|
|
|
|
|
|
// Mint a fresh token + push expiry forward so the resent link is the only
|
|
|
|
|
// working one. The old token hash is overwritten so prior emails become
|
|
|
|
|
// dead links.
|
|
|
|
|
const { raw, hash } = mintToken();
|
|
|
|
|
const expiresAt = new Date(Date.now() + INVITE_TTL_HOURS * 3600 * 1000);
|
|
|
|
|
|
|
|
|
|
await db
|
|
|
|
|
.update(crmUserInvites)
|
|
|
|
|
.set({ tokenHash: hash, expiresAt })
|
|
|
|
|
.where(eq(crmUserInvites.id, inviteId));
|
|
|
|
|
|
|
|
|
|
const link = `${env.APP_URL}/set-password?token=${raw}`;
|
|
|
|
|
const { subject, html, text } = crmInviteEmail({
|
|
|
|
|
link,
|
|
|
|
|
ttlHours: INVITE_TTL_HOURS,
|
|
|
|
|
recipientName: invite.name ?? undefined,
|
|
|
|
|
isSuperAdmin: invite.isSuperAdmin,
|
|
|
|
|
});
|
|
|
|
|
await sendEmail(invite.email, subject, html, undefined, text);
|
|
|
|
|
|
|
|
|
|
void createAuditLog({
|
|
|
|
|
userId: meta.userId,
|
|
|
|
|
portId: meta.portId,
|
|
|
|
|
action: 'resend_invite',
|
|
|
|
|
entityType: 'crm_invite',
|
|
|
|
|
entityId: inviteId,
|
|
|
|
|
metadata: { email: invite.email },
|
|
|
|
|
ipAddress: meta.ipAddress,
|
|
|
|
|
userAgent: meta.userAgent,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return { link };
|
|
|
|
|
}
|