refactor: prefix Mi for all entities (misskey-dev#11719) (MisskeyIO#160)

cheery-pick from misskey-dev@792622aeadf3e36d50cddec3c64b2ff0105ea927
This commit is contained in:
まっちゃとーにゅ 2023-08-26 08:42:29 +09:00 committed by GitHub
parent 651905e08f
commit 58bbff3738
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
234 changed files with 2061 additions and 2061 deletions

View file

@ -10,8 +10,8 @@ import type { DriveFilesRepository, NotesRepository, UserProfilesRepository, Use
import type { Config } from '@/config.js';
import type Logger from '@/logger.js';
import { DriveService } from '@/core/DriveService.js';
import type { DriveFile } from '@/models/entities/DriveFile.js';
import type { Note } from '@/models/entities/Note.js';
import type { MiDriveFile } from '@/models/entities/DriveFile.js';
import type { MiNote } from '@/models/entities/Note.js';
import { EmailService } from '@/core/EmailService.js';
import { bindThis } from '@/decorators.js';
import { SearchService } from '@/core/SearchService.js';
@ -57,7 +57,7 @@ export class DeleteAccountProcessorService {
}
{ // Delete notes
let cursor: Note['id'] | null = null;
let cursor: MiNote['id'] | null = null;
while (true) {
const notes = await this.notesRepository.find({
@ -69,7 +69,7 @@ export class DeleteAccountProcessorService {
order: {
id: 1,
},
}) as Note[];
}) as MiNote[];
if (notes.length === 0) {
break;
@ -88,7 +88,7 @@ export class DeleteAccountProcessorService {
}
{ // Delete files
let cursor: DriveFile['id'] | null = null;
let cursor: MiDriveFile['id'] | null = null;
while (true) {
const files = await this.driveFilesRepository.find({
@ -100,7 +100,7 @@ export class DeleteAccountProcessorService {
order: {
id: 1,
},
}) as DriveFile[];
}) as MiDriveFile[];
if (files.length === 0) {
break;