fix(backend): correct admin/abuse-user-reports schema (#14711)
* fix(backend): correct `abuse-user-reports` schema * Update CHANGELOG.md
This commit is contained in:
parent
ddc799fe3d
commit
ddf8e2a3dc
3 changed files with 20 additions and 5 deletions
|
|
@ -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;
|
||||
})[];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue