Skip to content
Snippets Groups Projects
Commit 3136c714 authored by Aya Morisawa's avatar Aya Morisawa Committed by syuilo
Browse files

Fix users/list/update API (#2590)

parent c0ee134f
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ export const meta = {
}
};
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
const [ps, psErr] = getParams(meta, params);
if (psErr) throw psErr;
......
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