improve moderation log

This commit is contained in:
syuilo
2023-09-23 20:50:02 +09:00
parent fdf149cf52
commit 19bc9c20a6
7 changed files with 75 additions and 3 deletions

View File

@@ -607,4 +607,13 @@ export type ModerationLog = {
} | {
type: 'promoteQueue';
info: ModerationLogPayloads['promoteQueue'];
} | {
type: 'resetPassword';
info: ModerationLogPayloads['resetPassword'];
} | {
type: 'suspendRemoteInstance';
info: ModerationLogPayloads['suspendRemoteInstance'];
} | {
type: 'unsuspendRemoteInstance';
info: ModerationLogPayloads['unsuspendRemoteInstance'];
});