## Rocket.Chat main library This package contains the main libraries of Rocket.Chat. ### APIs #### Settings This is an example to create settings: ```javascript settingsRegistry.addGroup('Settings_Group', function() { this.add('SettingInGroup', 'default_value', { type: 'boolean', public: true }); this.section('Group_Section', function() { this.add('Setting_Inside_Section', 'default_value', { type: 'boolean', public: true, enableQuery: { _id: 'SettingInGroup', value: true } }); }); }); ``` `settingsRegistry.add` type: * `string` - Stores a string value * Additional options: * `multiline`: boolean * `int` - Stores an integer value * `boolean` - Stores a boolean value * `select` - Creates an `