Update attached-notes.ts

This commit is contained in:
syuilo 2019-04-24 14:54:06 +09:00
parent 4f20ee1909
commit 9c774a50f8
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -2,7 +2,7 @@ import $ from 'cafy';
import { ID } from '../../../../../misc/cafy-id';
import define from '../../../define';
import { ApiError } from '../../../error';
import { DriveFiles } from '../../../../../models';
import { DriveFiles, Notes } from '../../../../../models';
import { types, bool } from '../../../../../misc/schema';
export const meta = {
@ -59,8 +59,11 @@ export default define(meta, async (ps, user) => {
throw new ApiError(meta.errors.noSuchFile);
}
/* v11 TODO
return await packMany(file.metadata.attachedNoteIds || [], user, {
const notes = await Notes.createQueryBuilder('note')
.where(':file = ANY(note.fileIds)', { file: file.id })
.getMany();
return await Notes.packMany(notes, user, {
detail: true
});*/
});
});