Merge pull request #25351 from overleaf/revert-24919-jel-create-group-audit-log

Revert "[web] Add group audit log"

GitOrigin-RevId: cf192bbe3ebdb693f18bab9c1c5d08da18ed34c0
This commit is contained in:
Jessica Lawshe
2025-05-07 08:07:34 +00:00
committed by Copybot
parent f72a34f25b
commit 12939b91b3
5 changed files with 8 additions and 70 deletions
@@ -1,35 +0,0 @@
/* eslint-disable no-unused-vars */
import Helpers from './lib/helpers.mjs'
const tags = ['saas']
const indexes = [
{
key: {
groupId: 1,
timestamp: 1,
},
name: 'groupId_1_timestamp_1',
},
]
const migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.groupAuditLogEntries, indexes)
}
const rollback = async client => {
const { db } = client
try {
await Helpers.dropIndexesFromCollection(db.groupAuditLogEntries, indexes)
} catch (err) {
console.error('Something went wrong rolling back the migrations', err)
}
}
export default {
tags,
migrate,
rollback,
}