This is an automated email from the ASF dual-hosted git repository.
arnold 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 63a3f56dd Business date part 1 fix (#2391)
63a3f56dd is described below
commit 63a3f56dd1a5f6d5f6e6a19a87f66377d34c2b6b
Author: Adam Saghy <[email protected]>
AuthorDate: Wed Jun 29 13:09:46 2022 +0200
Business date part 1 fix (#2391)
* Business date - part 1 - Fix swagger
---
.../businessdate/api/BusinessDateApiResourceSwagger.java | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git
a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/businessdate/api/BusinessDateApiResourceSwagger.java
b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/businessdate/api/BusinessDateApiResourceSwagger.java
index 4cae6f80c..07b5eb26d 100644
---
a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/businessdate/api/BusinessDateApiResourceSwagger.java
+++
b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/businessdate/api/BusinessDateApiResourceSwagger.java
@@ -19,7 +19,6 @@
package org.apache.fineract.infrastructure.businessdate.api;
import io.swagger.v3.oas.annotations.media.Schema;
-import java.time.LocalDate;
final class BusinessDateApiResourceSwagger {
@@ -37,7 +36,7 @@ final class BusinessDateApiResourceSwagger {
@Schema(example = "COB_DATE")
public String type;
@Schema(example = "2015-02-15")
- public LocalDate date;
+ public String date;
private BusinessDateResponse() {
@@ -52,7 +51,7 @@ final class BusinessDateApiResourceSwagger {
@Schema(example = "COB_DATE")
public String type;
@Schema(example = "2015-02-15")
- public LocalDate date;
+ public String date;
@Schema(example = "en")
public String locale;