fix: missing return
This commit is contained in:
parent
2caf197542
commit
c7ae96d119
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ import { notFoundError } from "../utils/error";
|
||||||
export class EmploymentOfficeController extends Controller {
|
export class EmploymentOfficeController extends Controller {
|
||||||
@Get()
|
@Get()
|
||||||
async getEmploymentOfficeList(@Query() districtId?: string, @Query() query: string = "") {
|
async getEmploymentOfficeList(@Query() districtId?: string, @Query() query: string = "") {
|
||||||
this.getEmploymentOfficeListByCriteria(districtId, query);
|
return this.getEmploymentOfficeListByCriteria(districtId, query);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Post("list")
|
@Post("list")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue