How to resolve signatures not sync'd to the database?

@sisa-zaza Before logging a support ticket, you may also reference this post to implement a webhook that triggers the report task once the attachment has uploaded.

For this implementation, the signature fields would have to be on the same model that triggers webhook for the report task.

Additionally, here are three ways to check that attachments are synced to the OnlineDB:

// Option 1
if (job.photo.state === 'uploaded') {
   var original = job.photo.urls.original;
}

// Option 2
if (job.photo.present()) {
   var original = job.photo.url();
}

// Option 3
if (job.photo.uploaded()) {
   var original = job.photo.url();
}