diff --git a/locales/index.d.ts b/locales/index.d.ts index 212272cd38..3513ec7e4b 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -11068,6 +11068,10 @@ export interface Locale extends ILocale { * Removed a relay */ "removeRelay": string; + /** + * Restarted migration for a user + */ + "restartMigration": string; }; "_fileViewer": { /** diff --git a/packages/frontend/src/pages/admin/modlog.ModLog.vue b/packages/frontend/src/pages/admin/modlog.ModLog.vue index 03c59ae0f5..1bd078ba70 100644 --- a/packages/frontend/src/pages/admin/modlog.ModLog.vue +++ b/packages/frontend/src/pages/admin/modlog.ModLog.vue @@ -22,6 +22,7 @@ SPDX-License-Identifier: AGPL-3.0-only 'importCustomEmojis', 'createPromo', 'addRelay', + 'restartMigration', ].includes(log.type), [$style.logYellow]: [ 'markSensitiveDriveFile', @@ -130,6 +131,7 @@ SPDX-License-Identifier: AGPL-3.0-only : @{{ log.info.noteUserUsername }}{{ log.info.noteUserHost ? '@' + log.info.noteUserHost : '' }} : {{ log.info.inbox }} : {{ log.info.inbox }} + : @{{ log.info.userUsername }}{{ log.info.userHost ? '@' + log.info.userHost : '' }}