Skip to content

Commit c4754d0

Browse files
fix[backend](collector): fixed collission path error on asset-group (PUT) and asset-groups (GET)
1 parent b3c1ebd commit c4754d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/main/java/com/park/utmstack/web/rest/collectors/UtmCollectorResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public ResponseEntity<List<UtmModuleGroup>> getModuleGroups(@PathVariable String
7676

7777
}
7878

79-
@PutMapping("/asset-groups")
79+
@PutMapping("/asset-group")
8080
public ResponseEntity<Void> updateGroup(@Valid @RequestBody UpdateGroupDTO body) {
8181

8282
utmCollectorService.updateGroup(body.getAssetsIds(), body.getAssetGroupId());

0 commit comments

Comments
 (0)