diff --git a/packages/rocketchat-lib/settings/server/startup.coffee b/packages/rocketchat-lib/settings/server/startup.coffee index 09eec680b72..a9f4c9b4176 100644 --- a/packages/rocketchat-lib/settings/server/startup.coffee +++ b/packages/rocketchat-lib/settings/server/startup.coffee @@ -30,9 +30,9 @@ Meteor.startup -> RocketChat.settings.add 'Meta_msvalidate01', '', { type: 'string', group: 'Meta' } RocketChat.settings.addGroup 'Push' - RocketChat.settings.add 'Push_debug', false, { type: 'boolean', group: 'Push' } - RocketChat.settings.add 'Push_enable', false, { type: 'boolean', group: 'Push' } - RocketChat.settings.add 'Push_production', false, { type: 'boolean', group: 'Push' } + RocketChat.settings.add 'Push_debug', false, { type: 'boolean', group: 'Push', public: true } + RocketChat.settings.add 'Push_enable', false, { type: 'boolean', group: 'Push', public: true } + RocketChat.settings.add 'Push_production', false, { type: 'boolean', group: 'Push', public: true } RocketChat.settings.add 'Push_apn_passphrase', '', { type: 'string', group: 'Push' } RocketChat.settings.add 'Push_apn_key', '', { type: 'string', multiline: true, group: 'Push' } RocketChat.settings.add 'Push_apn_cert', '', { type: 'string', multiline: true, group: 'Push' }