2023-01-13 04:40:33 +00:00
|
|
|
import { ModerationLogs } from "@/models/index.js";
|
|
|
|
import { genId } from "@/misc/gen-id.js";
|
|
|
|
import type { User } from "@/models/entities/user.js";
|
2019-07-13 18:18:45 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
export async function insertModerationLog(
|
|
|
|
moderator: { id: User["id"] },
|
|
|
|
type: string,
|
|
|
|
info?: Record<string, any>,
|
|
|
|
) {
|
2021-03-21 12:27:09 +00:00
|
|
|
await ModerationLogs.insert({
|
2019-07-13 18:18:45 +00:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: moderator.id,
|
|
|
|
type: type,
|
2021-12-09 14:58:30 +00:00
|
|
|
info: info || {},
|
2019-07-13 18:18:45 +00:00
|
|
|
});
|
|
|
|
}
|