Skip to content
Snippets Groups Projects
Unverified Commit 63afc54f authored by Marcelo Schmidt's avatar Marcelo Schmidt
Browse files

Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into develop

parents f3098576 304d3cb8
No related branches found
No related tags found
No related merge requests found
......@@ -196,12 +196,12 @@ RocketChat.settings.addGroup 'Meta', ->
RocketChat.settings.addGroup 'Push', ->
@add 'Push_debug', false, { type: 'boolean', public: true }
@add 'Push_enable', true, { type: 'boolean', public: true }
@add 'Push_enable_gateway', true, { type: 'boolean' }
@add 'Push_gateway', 'https://gateway.rocket.chat', { type: 'string' }
@add 'Push_production', true, { type: 'boolean', public: true }
@add 'Push_test_push', 'push_test', { type: 'action', actionText: 'Send_a_test_push_to_my_user' }
@add 'Push_debug', false, { type: 'boolean', public: true, enableQuery: { _id: 'Push_enable', value: true } }
@add 'Push_enable_gateway', true, { type: 'boolean', enableQuery: { _id: 'Push_enable', value: true } }
@add 'Push_gateway', 'https://gateway.rocket.chat', { type: 'string', enableQuery: [{ _id: 'Push_enable', value: true }, { _id: 'Push_enable_gateway', value: true }] }
@add 'Push_production', true, { type: 'boolean', public: true, enableQuery: [{ _id: 'Push_enable', value: true }, { _id: 'Push_enable_gateway', value: false }] }
@add 'Push_test_push', 'push_test', { type: 'action', actionText: 'Send_a_test_push_to_my_user', enableQuery: { _id: 'Push_enable', value: true } }
@section 'Certificates_and_Keys', ->
@add 'Push_apn_passphrase', '', { type: 'string' }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment