|
@@ -67,7 +67,6 @@ export class cirelationController implements BaseController {
|
|
|
async update(@Param('id') id: number, @Body() data: object) {
|
|
|
if (!id) throw new ServiceError(ErrorCode.ID_NOT_FOUND);
|
|
|
const result = await this.service.update({ id }, data);
|
|
|
- this.serviceUtil.fillIdentity(data, 'cirelation');
|
|
|
return result;
|
|
|
}
|
|
|
|