fix(api): parameter validation of users/show was wrong
This commit is contained in:
parent
67fc39b8db
commit
daa0ca72a7
2 changed files with 4 additions and 5 deletions
|
@ -16,8 +16,7 @@ You should also include the user name that made the change.
|
|||
- Improve webhook @syuilo
|
||||
|
||||
### Bugfixes
|
||||
-
|
||||
|
||||
- API: parameter validation of users/show was wrong
|
||||
|
||||
## 12.109.2 (2022/04/03)
|
||||
|
||||
|
|
|
@ -23,9 +23,9 @@ export const meta = {
|
|||
items: {
|
||||
type: 'object',
|
||||
ref: 'UserDetailed',
|
||||
}
|
||||
},
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
|
||||
errors: {
|
||||
|
@ -70,7 +70,7 @@ export const paramDef = {
|
|||
description: 'The local host is represented with `null`.',
|
||||
},
|
||||
},
|
||||
required: ['username', 'host'],
|
||||
required: ['username'],
|
||||
},
|
||||
],
|
||||
} as const;
|
||||
|
|
Loading…
Reference in a new issue