chore (backend): remove unused file

This commit is contained in:
naskya 2024-08-10 08:02:55 +09:00
parent d6332a8adc
commit 8234858ab7
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

@ -1,30 +0,0 @@
import { IsNull } from "typeorm";
import { config } from "@/config.js";
import type { NoteReaction } from "@/models/entities/note-reaction.js";
import type { Note } from "@/models/entities/note.js";
import { Emojis } from "@/models/index.js";
import { renderEmoji } from "backend-rs";
export const renderLike = async (noteReaction: NoteReaction, note: Note) => {
const reaction = noteReaction.reaction;
const object = {
type: "Like",
id: `${config.url}/likes/${noteReaction.id}`,
actor: `${config.url}/users/${noteReaction.userId}`,
object: note.uri ? note.uri : `${config.url}/notes/${noteReaction.noteId}`,
content: reaction,
} as any;
if (reaction.startsWith(":")) {
const name = reaction.replace(/:/g, "");
const emoji = await Emojis.findOneBy({
name,
host: IsNull(),
});
if (emoji) object.tag = [renderEmoji(emoji)];
}
return object;
};