You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to meteo...@googlegroups.com
For testing purposes, I need to override Meteor.settings.public on the server to be served to a client. But if I change Meteor.settings.public on the server, it is changed on the server only. Clients still get the old version when they load the app. What would be the right strategy to override it on the server so that I get the changed version on the client? I tried setting __meteor_runtime_config__.PUBLIC_SETTINGS, but I am seeing the same behaviour.
Ander Laif
unread,
Feb 28, 2015, 10:36:13 AM2/28/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to meteo...@googlegroups.com
Found it. Call
var generateBoilerplate = WebAppInternals.generateBoilerplate; generateBoilerplate();
to regenerate all boilerplate HTML templates which have the settings inside them.