fix(backend): correct admin/abuse-user-reports schema (#14711)

* fix(backend): correct `abuse-user-reports` schema

* Update CHANGELOG.md
This commit is contained in:
zyoshoka 2024-10-05 18:35:37 +09:00 committed by GitHub
parent ddc799fe3d
commit ddf8e2a3dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 5 deletions

View file

@ -5270,8 +5270,6 @@ export type operations = {
* @enum {string}
*/
targetUserOrigin?: 'combined' | 'local' | 'remote';
/** @default false */
forwarded?: boolean;
};
};
};
@ -5298,7 +5296,11 @@ export type operations = {
assigneeId: string | null;
reporter: components['schemas']['UserDetailedNotMe'];
targetUser: components['schemas']['UserDetailedNotMe'];
assignee?: components['schemas']['UserDetailedNotMe'] | null;
assignee: components['schemas']['UserDetailedNotMe'] | null;
forwarded: boolean;
/** @enum {string|null} */
resolvedAs: 'accept' | 'reject' | null;
moderationNote: string;
})[];
};
};