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/otr.ts

14 lines
342 B

import { settingsRegistry } from '../../app/settings/server';
export const createOTRSettings = () =>
settingsRegistry.addGroup('OTR', async function () {
await this.add('OTR_Enable', true, {
type: 'boolean',
i18nLabel: 'Enabled',
public: true,
});
await this.add('OTR_Count', 0, {
type: 'int',
hidden: true,
});
});