You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ju...@apache.org on 2019/10/09 07:40:31 UTC

[fineract-cn-group] 29/50: changing name from updateGroupDefinition to updateDefinition

This is an automated email from the ASF dual-hosted git repository.

juhan pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract-cn-group.git

commit a9aeb1b9aa1f3ff8f35cf3193cae04050f14c8af
Author: kengneruphine <ru...@gmail.com>
AuthorDate: Fri Jul 6 11:53:37 2018 +0100

    changing name from updateGroupDefinition to updateDefinition
---
 .../apache/fineract/cn/group/rest/GroupDefinitionRestController.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/service/src/main/java/org/apache/fineract/cn/group/rest/GroupDefinitionRestController.java b/service/src/main/java/org/apache/fineract/cn/group/rest/GroupDefinitionRestController.java
index 6bd9ecb..f520273 100644
--- a/service/src/main/java/org/apache/fineract/cn/group/rest/GroupDefinitionRestController.java
+++ b/service/src/main/java/org/apache/fineract/cn/group/rest/GroupDefinitionRestController.java
@@ -121,7 +121,7 @@ public class GroupDefinitionRestController {
   )
   public
   @ResponseBody
-  ResponseEntity<Void> updateGroupDefinition(@PathVariable("identifier") final String identifier, @RequestBody final GroupDefinition groupDefinition) {
+  ResponseEntity<Void> updateDefinition(@PathVariable("identifier") final String identifier, @RequestBody final GroupDefinition groupDefinition) {
     if (this.groupDefinitionService.groupDefinitionExists(identifier)) {
       this.commandGateway.process(new UpdateGroupDefinitionCommand(identifier, groupDefinition));
     } else {