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/server/models/raw/AuditLog.ts

10 lines
370 B

import type { Collection, Db } from 'mongodb';
import type { RocketChatRecordDeleted, IAuditLog } from '@rocket.chat/core-typings';
import { BaseRaw } from '../../../../server/models/raw/BaseRaw';
export class AuditLogRaw extends BaseRaw<IAuditLog> {
constructor(db: Db, trash?: Collection<RocketChatRecordDeleted<IAuditLog>>) {
super(db, 'audit_log', trash);
}
}