Files
2026-07-26 18:25:37 +09:00

18 lines
593 B
JavaScript

import { db } from "../../db/postgre.js";
import { GalleryLike } from "../entities/gallery-like.js";
import { GalleryPosts } from "../index.js";
export const GalleryLikeRepository = db.getRepository(GalleryLike).extend({
async pack (src, me) {
const like = typeof src === "object" ? src : await this.findOneByOrFail({
id: src
});
return {
id: like.id,
post: await GalleryPosts.pack(like.post || like.postId, me)
};
},
packMany (likes, me) {
return Promise.all(likes.map((x)=>this.pack(x, me)));
}
});