diff options
| author | Marie <github@yuugi.dev> | 2024-10-17 20:22:16 +0200 |
|---|---|---|
| committer | Marie <github@yuugi.dev> | 2024-10-17 20:22:16 +0200 |
| commit | 5152192e09bd5cf25b37f4933da95aec37b1df67 (patch) | |
| tree | 9d4bb57657cbf09e2383300caa0575f4a6801056 /packages/backend/src | |
| parent | upd: add additional check from delete endpoint (diff) | |
| download | sharkey-5152192e09bd5cf25b37f4933da95aec37b1df67.tar.gz sharkey-5152192e09bd5cf25b37f4933da95aec37b1df67.tar.bz2 sharkey-5152192e09bd5cf25b37f4933da95aec37b1df67.zip | |
fix: add missing type
Diffstat (limited to 'packages/backend/src')
| -rw-r--r-- | packages/backend/src/types.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/backend/src/types.ts b/packages/backend/src/types.ts index 83251d5a73..d26a2c8481 100644 --- a/packages/backend/src/types.ts +++ b/packages/backend/src/types.ts @@ -124,6 +124,11 @@ export type ModerationLogPayloads = { userUsername: string; userHost: string | null; }; + decline: { + userId: string; + userUsername: string; + userHost: string | null; + }; unsuspend: { userId: string; userUsername: string; |