Skip to content
Snippets Groups Projects
Commit daa0ca72 authored by syuilo's avatar syuilo
Browse files

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

parent 67fc39b8
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment