fix(api): parameter validation of users/show was wrong

This commit is contained in:
syuilo 2022-04-06 00:04:25 +09:00
parent 67fc39b8db
commit daa0ca72a7
2 changed files with 4 additions and 5 deletions

View file

@ -16,8 +16,7 @@ You should also include the user name that made the change.
- Improve webhook @syuilo - Improve webhook @syuilo
### Bugfixes ### Bugfixes
- - API: parameter validation of users/show was wrong
## 12.109.2 (2022/04/03) ## 12.109.2 (2022/04/03)

View file

@ -23,9 +23,9 @@ export const meta = {
items: { items: {
type: 'object', type: 'object',
ref: 'UserDetailed', ref: 'UserDetailed',
} },
}, },
] ],
}, },
errors: { errors: {
@ -70,7 +70,7 @@ export const paramDef = {
description: 'The local host is represented with `null`.', description: 'The local host is represented with `null`.',
}, },
}, },
required: ['username', 'host'], required: ['username'],
}, },
], ],
} as const; } as const;