Add photobooth uploader download email

This commit is contained in:
Codex Agent
2026-01-13 09:59:39 +01:00
parent 775786c6f1
commit 5f3d6af9f0
12 changed files with 309 additions and 1 deletions

View File

@@ -2068,6 +2068,13 @@ export async function createEventPhotoboothConnectCode(
};
}
export async function sendEventPhotoboothUploaderEmail(slug: string): Promise<void> {
const response = await authorizedFetch(`${photoboothEndpoint(slug)}/uploader-email`, {
method: 'POST',
});
await jsonOrThrow<{ message?: string }>(response, 'Failed to send photobooth uploader email');
}
export async function submitTenantFeedback(payload: {
category: string;
sentiment?: 'positive' | 'neutral' | 'negative';