mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 18:53:09 +02:00
13 lines
381 B
TypeScript
13 lines
381 B
TypeScript
import { ILocalUser } from '../models/entities/user';
|
|
import { ModerationLogs } from '../models';
|
|
import { genId } from '../misc/gen-id';
|
|
|
|
export async function insertModerationLog(moderator: ILocalUser, type: string, info?: Record<string, any>) {
|
|
await ModerationLogs.save({
|
|
id: genId(),
|
|
createdAt: new Date(),
|
|
userId: moderator.id,
|
|
type: type,
|
|
info: info || {}
|
|
});
|
|
}
|