Merge pull request #33085 from overleaf/revert-32956-em-library-entry-list

Revert "Show library entry list on /library page"

GitOrigin-RevId: c2bb4d240f5e07c5a3ddfca62fc5749a3e5c56ab
This commit is contained in:
Eric Mc Sween
2026-04-23 13:12:06 -04:00
committed by Copybot
parent 2fdecb5d19
commit 60cc551c4d
3 changed files with 0 additions and 28 deletions

View File

@@ -1,26 +0,0 @@
import Helpers from './lib/helpers.mjs'
const tags = ['saas']
const indexes = [
{
key: { userId: 1, updatedAt: 1 },
name: 'userId_1_updatedAt_1',
},
]
const migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.libraryReferences, indexes)
}
const rollback = async client => {
const { db } = client
await Helpers.dropIndexesFromCollection(db.libraryReferences, indexes)
}
export default {
tags,
migrate,
rollback,
}

View File

@@ -29,7 +29,6 @@ export const db = {
grouppolicies: internalDb.collection('grouppolicies'),
groupAuditLogEntries: internalDb.collection('groupAuditLogEntries'),
institutions: internalDb.collection('institutions'),
libraryReferences: internalDb.collection('libraryReferences'),
messages: internalDb.collection('messages'),
migrations: internalDb.collection('migrations'),
notifications: internalDb.collection('notifications'),