2023-01-13 05:40:33 +01: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 20:18:45 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
export async function insertModerationLog(
|
|
|
|
moderator: { id: User["id"] },
|
|
|
|
type: string,
|
|
|
|
info?: Record<string, any>,
|
|
|
|
) {
|
2021-03-21 13:27:09 +01:00
|
|
|
await ModerationLogs.insert({
|
2019-07-13 20:18:45 +02:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: moderator.id,
|
|
|
|
type: type,
|
2021-12-09 15:58:30 +01:00
|
|
|
info: info || {},
|
2019-07-13 20:18:45 +02:00
|
|
|
});
|
|
|
|
}
|