...
ui-eholdings will be able to create and send the export jobs from UI
What should be done in this module:
- when a user clicks on the 'Export' button, UI creates a Job sending a request to mod-data-export-spring:
"methods": [ "POST" ], "pathPattern": "/data-export-spring/jobs", "permissionsRequired": [ "data-export.job.item.post" ], "modulePermissions": []
Request payload:
- store the fields available to export (see attached user story);
- send jobs to mod-data-export-spring;
- show a green toast message with the name of generating file, and the approximate duration of export. Duration is defined based on the number of records for export;
...