Skip to content

Instantly share code, notes, and snippets.

@travist
Created September 6, 2022 18:01
Show Gist options
  • Save travist/501ca37adfb0368b53cfe901ac2a8f25 to your computer and use it in GitHub Desktop.
Save travist/501ca37adfb0368b53cfe901ac2a8f25 to your computer and use it in GitHub Desktop.
Update PDF URL's of forms
db.forms.find({'settings.pdf.src': {$ne: null}}).forEach(function(form) {
db.forms.update({_id: form._id}, {$set: {'settings.pdf.src': form.settings.pdf.src.replace(/https\:\/\/files\.form\.io|/, 'https://yourdeployment.com/pdf')}})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment