Created
September 6, 2022 18:01
-
-
Save travist/501ca37adfb0368b53cfe901ac2a8f25 to your computer and use it in GitHub Desktop.
Update PDF URL's of forms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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