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

14 lines
550 B

import { ServiceClassInternal } from '../../../../server/sdk/types/ServiceClass';
import { IEnterpriseSettings } from '../../../../server/sdk/types/IEnterpriseSettings';
import { changeSettingValue } from './settings';
import { ISetting } from '../../../../definition/ISetting';
export class EnterpriseSettings extends ServiceClassInternal implements IEnterpriseSettings {
protected name = 'ee-settings';
protected internal = true;
changeSettingValue(record: ISetting): undefined | ISetting['value'] {
return changeSettingValue(record);
}
}