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

17 lines
748 B

import type { IMessage } from '../../../src/definition/messages';
import type { IUser } from '../../../src/definition/users';
import { ModerationBridge } from '../../../src/server/bridges';
export class TestsModerationBridge extends ModerationBridge {
public report(messageId: string, description: string, userId: string, appId: string): Promise<void> {
throw new Error('Method not implemented.');
}
public dismissReportsByMessageId(messageId: IMessage['id'], reason: string, action: string, appId: string): Promise<void> {
throw new Error('Method not implemented.');
}
public dismissReportsByUserId(userId: IUser['id'], reason: string, action: string, appId: string): Promise<void> {
throw new Error('Method not implemented.');
}
}