Change Push_debug, Push_enable and Push_prodution to be public

pull/463/head
Rodrigo Nascimento 11 years ago
parent 198689ba78
commit be6dd0306a
  1. 6
      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' }

Loading…
Cancel
Save