Add photobooth uploader download email
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user