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/ee/app/settings/server/settings.internalService.ts

15 lines
518 B

import type { ISetting } from '@rocket.chat/core-typings';
import { ServiceClassInternal } from '@rocket.chat/core-services';
import type { IEnterpriseSettings } from '@rocket.chat/core-services';
import { changeSettingValue } from './settings';
export class EnterpriseSettings extends ServiceClassInternal implements IEnterpriseSettings {
protected name = 'ee-settings';
protected internal = true;
changeSettingValue(record: ISetting): undefined | ISetting['value'] {
return changeSettingValue(record);
}
}