The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/server/settings/discussions.ts

13 lines
395 B

import { settingsRegistry } from '../../app/settings/server';
export const createDiscussionsSettings = () =>
settingsRegistry.addGroup('Discussion', async function () {
// the channel for which discussions are created if none is explicitly chosen
await this.add('Discussion_enabled', true, {
group: 'Discussion',
i18nLabel: 'Enable',
type: 'boolean',
public: true,
});
});