rez_core 2.1.130 → 2.1.131
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/dist/module/meta/controller/entity.controller.d.ts +1 -4
- package/dist/module/meta/controller/entity.controller.js +1 -5
- package/dist/module/meta/controller/entity.controller.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/meta/controller/entity.controller.ts +5 -5
package/package.json
CHANGED
|
@@ -147,15 +147,15 @@ export class EntityController {
|
|
|
147
147
|
throw new NotFoundException(`No entity found for id "${id}"`);
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
|
|
150
|
+
return await entityService.updateEntity(
|
|
151
151
|
entityData,
|
|
152
152
|
loggedInUser as UserData,
|
|
153
153
|
);
|
|
154
154
|
|
|
155
|
-
return {
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
};
|
|
155
|
+
// return {
|
|
156
|
+
// success: true,
|
|
157
|
+
// data: updatedEntity,
|
|
158
|
+
// };
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
@Post('delete/:id')
|