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

11 lines
469 B

import type { ISmarshHistory, RocketChatRecordDeleted } from '@rocket.chat/core-typings';
import type { ISmarshHistoryModel } from '@rocket.chat/model-typings';
import type { Db, Collection } from 'mongodb';
import { BaseRaw } from './BaseRaw';
export class SmarshHistoryRaw extends BaseRaw<ISmarshHistory> implements ISmarshHistoryModel {
constructor(db: Db, trash?: Collection<RocketChatRecordDeleted<ISmarshHistory>>) {
super(db, 'smarsh_history', trash);
}
}