Add a new dashboard page.
This commit is contained in:
parent
89150e1164
commit
fd24b1898e
133 changed files with 17303 additions and 11112 deletions
14
webui/src/store/entrypoints/actions.js
Normal file
14
webui/src/store/entrypoints/actions.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
import entrypointsService from '../../_services/EntrypointsService'
|
||||
|
||||
export function getAll ({ commit }) {
|
||||
commit('getAllRequest')
|
||||
return entrypointsService.getAll()
|
||||
.then(body => {
|
||||
commit('getAllSuccess', body)
|
||||
return body
|
||||
})
|
||||
.catch(error => {
|
||||
commit('getAllFailure', error)
|
||||
return Promise.reject(error)
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue