wip
This commit is contained in:
@@ -11,3 +11,30 @@ export type IMessagingHistory = {
|
||||
partnerId: mongo.ObjectID;
|
||||
messageId: mongo.ObjectID;
|
||||
};
|
||||
|
||||
/**
|
||||
* MessagingHistoryを物理削除します
|
||||
*/
|
||||
export async function deleteMessagingHistory(messagingHistory: string | mongo.ObjectID | IMessagingHistory) {
|
||||
let m: IMessagingHistory;
|
||||
|
||||
// Populate
|
||||
if (mongo.ObjectID.prototype.isPrototypeOf(messagingHistory)) {
|
||||
m = await MessagingHistory.findOne({
|
||||
_id: messagingHistory
|
||||
});
|
||||
} else if (typeof messagingHistory === 'string') {
|
||||
m = await MessagingHistory.findOne({
|
||||
_id: new mongo.ObjectID(messagingHistory)
|
||||
});
|
||||
} else {
|
||||
m = messagingHistory as IMessagingHistory;
|
||||
}
|
||||
|
||||
if (m == null) return;
|
||||
|
||||
// このMessagingHistoryを削除
|
||||
await MessagingHistory.remove({
|
||||
_id: m._id
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user