Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-19 Thread Kang Breder
Hello Cajetan. Seems that does not still work even after enabling cors. I do not know if the problem should be with the server. Yet on the swagger-ui console, it says resource has been blocked by cors. On Sat, Aug 3, 2019 at 4:27 PM Cajetan Rodrigues wrote: > Thanks for the update Kang. > > I

Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-05 Thread Kang Breder
Hello Michael The swagger specification file is the response.json file. All the resource classes are only used to add swagger annotations on each endpoint and for model classes. At build time, the swagger specification is generated at

Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-05 Thread Michael Vorburger
I'd also be interested to follow along re. this, but I can't seem to find a PR re this on https://github.com/apache/fineract/pulls .. what am I missing? I briefly looked at

Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-05 Thread Kang Breder
I think Ebenezer Graham works at the Backend too. On Mon, Aug 5, 2019 at 11:59 AM Kang Breder wrote: > Hi Cajetan > > Find the path below for self client Api Resource > > fineract/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/client/api/SelfClientsApiResource.java > > On

Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-05 Thread Kang Breder
Hi Cajetan Find the path below for self client Api Resource fineract/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/client/api/SelfClientsApiResource.java On Mon, Aug 5, 2019 at 11:09 AM Cajetan Rodrigues wrote: > Can you please point a repo where the self-service APIs are

Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-05 Thread Cajetan Rodrigues
Can you please point a repo where the self-service APIs are being created and also let me know who else is working on the backend other than you, so I get in touch with them. Thanks and Regards, *Cajetan Christopher Rodrigues* *B.E Computer Engineering* *rigrod1...@gmail.com * *Google Summer of

Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-04 Thread Kang Breder
Thank you Cajetan for your help. I will try that out. The Fineract APIs are on every module of the codebase in the api package. Regards On Sat, Aug 3, 2019 at 4:31 PM Cajetan Rodrigues wrote: > Also, can you point that project where all the fineract APIs have been > created? y be, I can try

Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-03 Thread Cajetan Rodrigues
Also, can you point that project where all the fineract APIs have been created? y be, I can try setting it up locally this week if i'm done with my planned tasks with online banking app 3.0. Also let me know which all interns are currently working in the backend more specifically with the self

Re: [Mifos-developer] Swagger Implementation for the fineract backend

2019-08-03 Thread Cajetan Rodrigues
Thanks for the update Kang. I think you are facing CORS error, because you might have not setup CORS decorator before each and every entity ie Java Bean. Maybe this could help. (To be added before each entity bean defined in the models folder) @CrossOrigin(origins = "*", allowedHeaders = "*")