parent
45ea17c911
commit
e94f41b155
@ -1,12 +1,11 @@ |
||||
Meteor.startup(function() { |
||||
RocketChat.settings.addGroup('Atlassian Crowd', function() { |
||||
const enableQuery = {_id: 'CROWD_Enable', value: true}; |
||||
|
||||
this.add('CROWD_Enable', false, { type: 'boolean', public: true }); |
||||
this.add('CROWD_URL', '', { type: 'string', enableQuery: enableQuery}); |
||||
this.add('CROWD_APP_USERNAME', '', { type: 'string', enableQuery: enableQuery}); |
||||
this.add('CROWD_APP_PASSWORD', '', { type: 'string', enableQuery: enableQuery }); |
||||
this.add('CROWD_Sync_User_Data', false, { type: 'boolean', enableQuery: enableQuery }); |
||||
this.add('CROWD_Enable', false, { type: 'boolean', public: true, i18nLabel: 'Enabled' }); |
||||
this.add('CROWD_URL', '', { type: 'string', enableQuery: enableQuery, i18nLabel: 'URL' }); |
||||
this.add('CROWD_APP_USERNAME', '', { type: 'string', enableQuery: enableQuery, i18nLabel: 'Username' }); |
||||
this.add('CROWD_APP_PASSWORD', '', { type: 'string', enableQuery: enableQuery, i18nLabel: 'Password' }); |
||||
this.add('CROWD_Sync_User_Data', false, { type: 'boolean', enableQuery: enableQuery, i18nLabel: 'Sync_Users' }); |
||||
this.add('CROWD_Test_Connection', 'crowd_test_connection', { type: 'action', actionText: 'Test_Connection' }); |
||||
}); |
||||
}); |
||||
|
||||
Loading…
Reference in new issue