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/packages/apps-engine/tests/test-data/bridges/environmentalVariableBridge.ts

15 lines
559 B

import { EnvironmentalVariableBridge } from '../../../src/server/bridges/EnvironmentalVariableBridge';
export class TestsEnvironmentalVariableBridge extends EnvironmentalVariableBridge {
public getValueByName(envVarName: string, appId: string): Promise<string> {
throw new Error('Method not implemented.');
}
public isReadable(envVarName: string, appId: string): Promise<boolean> {
throw new Error('Method not implemented.');
}
public isSet(envVarName: string, appId: string): Promise<boolean> {
throw new Error('Method not implemented.');
}
}