fixing response object

This commit is contained in:
Warunee Tamkoo 2024-09-05 17:26:52 +07:00
parent ba612f1b2b
commit fd76c6ee09
3 changed files with 11 additions and 13 deletions

View file

@ -278,12 +278,10 @@ export class DataOptionController extends Controller {
...person,
};
const data = await {
return new HttpSuccess({
person: responsePerson,
assign_no: assign + 1,
assign_month: 6,
};
return new HttpSuccess({ data: data });
});
}
}