mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 12:33:09 +02:00
792622aead
* wip * wip * wip * wip * Update RepositoryModule.ts * wip * wip * wip * Revert "wip" This reverts commit c1c13b37d2aaf3c65bc148212da302b0eb7868bf.
33 lines
929 B
TypeScript
33 lines
929 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { ModerationLogsRepository } from '@/models/index.js';
|
|
import type { MiUser } from '@/models/entities/User.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
|
|
@Injectable()
|
|
export class ModerationLogService {
|
|
constructor(
|
|
@Inject(DI.moderationLogsRepository)
|
|
private moderationLogsRepository: ModerationLogsRepository,
|
|
|
|
private idService: IdService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public async insertModerationLog(moderator: { id: MiUser['id'] }, type: string, info?: Record<string, any>) {
|
|
await this.moderationLogsRepository.insert({
|
|
id: this.idService.genId(),
|
|
createdAt: new Date(),
|
|
userId: moderator.id,
|
|
type: type,
|
|
info: info ?? {},
|
|
});
|
|
}
|
|
}
|