Skip to content
Snippets Groups Projects
Verified Commit 1ca4282b authored by jfriedli's avatar jfriedli
Browse files

fixed wrong namespacing in store action

parent d8777605
No related branches found
No related tags found
2 merge requests!364Develop,!360Resolve "Refactor"
Pipeline #44797 passed
export async function triggerBulkDownload (context, body) {
context.commit('Download/setZipCreating', true)
context.commit('setZipCreating', true)
const response = await context.rootGetters.apiService.triggerBulkDownload(body)
context.commit('Download/setBulkZipLink', response.data.download_link)
context.commit('Download/setZipCreating', false)
context.commit('setBulkZipLink', response.data.download_link)
context.commit('setZipCreating', false)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment