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

8 lines
243 B

export function setUpdatedAt(record: Record<string, any>): void {
if (/(^|,)\$/.test(Object.keys(record).join(','))) {
record.$set = record.$set || {};
record.$set._updatedAt = new Date();
} else {
record._updatedAt = new Date();
}
}