Synchronization with external API in Rubt Rubt system

I am considering Volt as an option for creating an admin interface for our REST API. API is a separate application. I would like the Admin app to store data in the API, but also store its own non-API data (such as admin users and notes on API data objects) locally.

Is there a way to sync every local change in Admin using our remote API like callback? Or do I have to wait until the Data Provider API is ready as stated in the last Volt blog post (as of writing)?

+3


source to share


1 answer


So, this is a fairly common problem, so I think the long term solution would be to support multiple stores in the app and have a REST data provider that you can extend. However, it may be a while before it's ready. At the same time, you can always load and save data through tasks. (I realize it's not perfect, but it will work right now) Let me know if you need more information on using load and save tasks. I will add the REST data provider to the TODO list.



+3


source







All Articles