added watermark settings tab on the branding page and added more package details to the billing page, added a new guest notifications page
This commit is contained in:
@@ -67,6 +67,11 @@ export function resolveEngagementMode(event?: TenantEvent | null): 'tasks' | 'ph
|
||||
return null;
|
||||
}
|
||||
|
||||
export function isBrandingAllowed(event?: TenantEvent | null): boolean {
|
||||
if (!event) return true;
|
||||
return Boolean((event.package as any)?.branding_allowed ?? true);
|
||||
}
|
||||
|
||||
export function formatEventStatusLabel(
|
||||
status: TenantEvent['status'] | null,
|
||||
t: (key: string, options?: Record<string, unknown>) => string,
|
||||
|
||||
Reference in New Issue
Block a user