Updated campagin cover photos

This commit is contained in:
2025-10-01 12:20:55 -06:00
parent 3323a887f9
commit e1daa57e79
14 changed files with 804 additions and 292 deletions

View File

@@ -424,6 +424,7 @@ class NocoDBService {
'Email Subject': campaignData.email_subject,
'Email Body': campaignData.email_body,
'Call to Action': campaignData.call_to_action,
'Cover Photo': campaignData.cover_photo,
'Status': campaignData.status,
'Allow SMTP Email': campaignData.allow_smtp_email,
'Allow Mailto Link': campaignData.allow_mailto_link,
@@ -455,6 +456,7 @@ class NocoDBService {
if (updates.email_subject !== undefined) mappedUpdates['Email Subject'] = updates.email_subject;
if (updates.email_body !== undefined) mappedUpdates['Email Body'] = updates.email_body;
if (updates.call_to_action !== undefined) mappedUpdates['Call to Action'] = updates.call_to_action;
if (updates.cover_photo !== undefined) mappedUpdates['Cover Photo'] = updates.cover_photo;
if (updates.status !== undefined) mappedUpdates['Status'] = updates.status;
if (updates.allow_smtp_email !== undefined) mappedUpdates['Allow SMTP Email'] = updates.allow_smtp_email;
if (updates.allow_mailto_link !== undefined) mappedUpdates['Allow Mailto Link'] = updates.allow_mailto_link;