Skip to content

Commit

Permalink
SHIBUI-2364
Browse files Browse the repository at this point in the history
fixes to group
  • Loading branch information
chasegawa committed Sep 9, 2022
1 parent d4c3cb3 commit 999ba4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public ResponseEntity<?> update(@RequestBody EntityDescriptorRepresentation edRe

@PutMapping("/EntityDescriptor/{resourceId}/changeGroup/{groupId}")
@Transactional
public ResponseEntity<?> updateGroupForEntityDescriptor(@PathVariable String resourceId, String groupId)
public ResponseEntity<?> updateGroupForEntityDescriptor(@PathVariable String resourceId, @PathVariable String groupId)
throws ForbiddenException, ConcurrentModificationException, PersistentEntityNotFound, InvalidPatternMatchException {
EntityDescriptorRepresentation result = entityDescriptorService.updateGroupForEntityDescriptor(resourceId, groupId);
return ResponseEntity.ok().body(result);
Expand Down

0 comments on commit 999ba4f

Please sign in to comment.