rez_core 2.1.29 → 2.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -62,6 +62,7 @@ export class EntityController {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
@Post('create')
|
|
65
|
+
@HttpCode(200)
|
|
65
66
|
async create(
|
|
66
67
|
@Body() entityData: BaseEntity,
|
|
67
68
|
@Query('entity_type') entityType: string,
|
|
@@ -98,6 +99,7 @@ export class EntityController {
|
|
|
98
99
|
}
|
|
99
100
|
|
|
100
101
|
@Post('update/:id')
|
|
102
|
+
@HttpCode(200)
|
|
101
103
|
async update(
|
|
102
104
|
@Param('id') id: number,
|
|
103
105
|
@Body() entityData: BaseEntity,
|