|
|
|
|
@ -30,3 +30,14 @@ Meteor.startup -> |
|
|
|
|
RocketChat.settings.add 'Meta:robots', '', { type: 'string', group: 'Meta' } |
|
|
|
|
RocketChat.settings.add 'Meta:google-site-verification', '', { type: 'string', group: 'Meta' } |
|
|
|
|
RocketChat.settings.add 'Meta:msvalidate.01', '', { 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_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' } |
|
|
|
|
RocketChat.settings.add 'Push_apn_dev_passphrase', '', { type: 'string', group: 'Push' } |
|
|
|
|
RocketChat.settings.add 'Push_apn_dev_key', '', { type: 'string', multiline: true, group: 'Push' } |
|
|
|
|
RocketChat.settings.add 'Push_apn_dev_cert', '', { type: 'string', multiline: true, group: 'Push' } |
|
|
|
|
|