Merge pull request #17525 from overleaf/ae-upgrade-prettier
Upgrade Prettier to v3 GitOrigin-RevId: 6f1338f196408f3edb4892d5220ad3665ff1a5bc
This commit is contained in:
@@ -45,9 +45,8 @@ async function checkActiveSubscriptions() {
|
||||
|
||||
if (subscriptions.length) {
|
||||
const groupIds = subscriptions.map(sub => sub._id)
|
||||
const bigQueryGroupMemberships = await fetchBigQueryMembershipStatuses(
|
||||
groupIds
|
||||
)
|
||||
const bigQueryGroupMemberships =
|
||||
await fetchBigQueryMembershipStatuses(groupIds)
|
||||
const membershipsByGroupId = _.groupBy(
|
||||
bigQueryGroupMemberships,
|
||||
'group_id'
|
||||
@@ -85,9 +84,8 @@ async function checkDeletedSubscriptions() {
|
||||
|
||||
if (deletedSubscriptions.length) {
|
||||
const groupIds = deletedSubscriptions.map(sub => sub._id.toString())
|
||||
const bigQueryGroupMemberships = await fetchBigQueryMembershipStatuses(
|
||||
groupIds
|
||||
)
|
||||
const bigQueryGroupMemberships =
|
||||
await fetchBigQueryMembershipStatuses(groupIds)
|
||||
|
||||
const membershipsByGroupId = _.groupBy(
|
||||
bigQueryGroupMemberships,
|
||||
|
||||
@@ -68,9 +68,8 @@ async function main() {
|
||||
new Set(docs.map(doc => doc.project_id.toString()))
|
||||
).map(id => new ObjectId(id))
|
||||
console.log('Checking projects', JSON.stringify(projectIds))
|
||||
const { nProjectsWithOrphanedDocs, nDeletedDocs } = await processBatch(
|
||||
projectIds
|
||||
)
|
||||
const { nProjectsWithOrphanedDocs, nDeletedDocs } =
|
||||
await processBatch(projectIds)
|
||||
nProjectsProcessedTotal += projectIds.length
|
||||
nProjectsWithOrphanedDocsTotal += nProjectsWithOrphanedDocs
|
||||
nDeletedDocsTotal += nDeletedDocs
|
||||
|
||||
@@ -8,9 +8,8 @@ const PROJECT_ID = ARGV.shift()
|
||||
const FILE_NAMES_TO_RESTORE = ARGV
|
||||
|
||||
async function main() {
|
||||
const deletedDocs = await DocstoreManager.promises.getAllDeletedDocs(
|
||||
PROJECT_ID
|
||||
)
|
||||
const deletedDocs =
|
||||
await DocstoreManager.promises.getAllDeletedDocs(PROJECT_ID)
|
||||
const docsToRestore = deletedDocs.filter(doc =>
|
||||
FILE_NAMES_TO_RESTORE.includes(doc.name)
|
||||
)
|
||||
|
||||
@@ -19,9 +19,8 @@ waitForDb()
|
||||
})
|
||||
|
||||
async function main() {
|
||||
const result = await SAMLUserIdMigrationHandler.promises.checkMigration(
|
||||
institutionId
|
||||
)
|
||||
const result =
|
||||
await SAMLUserIdMigrationHandler.promises.checkMigration(institutionId)
|
||||
|
||||
if (emitUsers) {
|
||||
console.log(
|
||||
|
||||
@@ -19,9 +19,8 @@ waitForDb()
|
||||
})
|
||||
|
||||
async function main() {
|
||||
const result = await SAMLUserIdMigrationHandler.promises.removeNotMigrated(
|
||||
institutionId
|
||||
)
|
||||
const result =
|
||||
await SAMLUserIdMigrationHandler.promises.removeNotMigrated(institutionId)
|
||||
|
||||
if (emitUsers) {
|
||||
console.log(
|
||||
|
||||
Reference in New Issue
Block a user