You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2020/06/20 21:10:55 UTC

[fineract] branch develop updated: FINERACT-799 Fixes Sorting for certain columns is not supported in Audit

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

vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new b0043d8  FINERACT-799 Fixes Sorting for certain columns is not supported in Audit
b0043d8 is described below

commit b0043d8e8594ad9f0bf9de59a6e4f75e4288883c
Author: thesmallstar <ma...@gmail.com>
AuthorDate: Sun Jun 21 00:52:03 2020 +0530

    FINERACT-799 Fixes Sorting for certain columns is not supported in Audit
---
 .../fineract/commands/service/AuditReadPlatformServiceImpl.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fineract-provider/src/main/java/org/apache/fineract/commands/service/AuditReadPlatformServiceImpl.java b/fineract-provider/src/main/java/org/apache/fineract/commands/service/AuditReadPlatformServiceImpl.java
index 54a6b23..48572d3 100644
--- a/fineract-provider/src/main/java/org/apache/fineract/commands/service/AuditReadPlatformServiceImpl.java
+++ b/fineract-provider/src/main/java/org/apache/fineract/commands/service/AuditReadPlatformServiceImpl.java
@@ -75,9 +75,9 @@ import org.springframework.stereotype.Service;
 public class AuditReadPlatformServiceImpl implements AuditReadPlatformService {
 
     private static final Logger LOG = LoggerFactory.getLogger(AuditReadPlatformServiceImpl.class);
-    private static final Set<String> supportedOrderByValues = new HashSet<>(
-            Arrays.asList("id", "actionName", "entityName", "resourceId", "subresourceId", "madeOnDate", "checkedOnDate", "officeName",
-                    "groupName", "clientName", "loanAccountNo", "savingsAccountNo", "clientId", "loanId"));
+    private static final Set<String> supportedOrderByValues = new HashSet<>(Arrays.asList("id", "actionName", "entityName", "resourceId",
+            "subresourceId", "madeOnDate", "checkedOnDate", "officeName", "groupName", "clientName", "loanAccountNo", "savingsAccountNo",
+            "clientId", "loanId", "maker", "checker", "processingResult"));
 
     private final JdbcTemplate jdbcTemplate;
     private final PlatformSecurityContext context;