diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2024-08-17 09:57:28 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-17 09:57:28 +0900 |
| commit | ef950a345bfd520a20336b55f2e7e095a4b9ebf0 (patch) | |
| tree | 496c9d25258457b976c943d6e4856492ef9227ff /packages/misskey-js/src/entities.ts | |
| parent | update misskey-dev/eslint-plugin (diff) | |
| download | misskey-ef950a345bfd520a20336b55f2e7e095a4b9ebf0.tar.gz misskey-ef950a345bfd520a20336b55f2e7e095a4b9ebf0.tar.bz2 misskey-ef950a345bfd520a20336b55f2e7e095a4b9ebf0.zip | |
suspend周りの改修 (#14409)
* enhance(backend): 凍結されたアカウントのフォローリクエストを表示しないように
* Update CHANGELOG.md
* wip
* Update gen-spec.ts
* Update packages/backend/src/server/api/endpoints/admin/suspend-user.ts
Co-authored-by: Kisaragi <48310258+KisaragiEffective@users.noreply.github.com>
* owa-
* revert misskey-js related changes (#14414)
---------
Co-authored-by: Kisaragi <48310258+KisaragiEffective@users.noreply.github.com>
Co-authored-by: anatawa12 <anatawa12@icloud.com>
Diffstat (limited to 'packages/misskey-js/src/entities.ts')
| -rw-r--r-- | packages/misskey-js/src/entities.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/misskey-js/src/entities.ts b/packages/misskey-js/src/entities.ts index ce58fb2970..544568db41 100644 --- a/packages/misskey-js/src/entities.ts +++ b/packages/misskey-js/src/entities.ts @@ -159,6 +159,9 @@ export type ModerationLog = { } | { type: 'deleteAbuseReportNotificationRecipient'; info: ModerationLogPayloads['deleteAbuseReportNotificationRecipient']; +} | { + type: 'deleteAccount'; + info: ModerationLogPayloads['deleteAccount']; }); export type ServerStats = { |