summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/redux/actions/topology/machine.js
blob: 93320884446270f3e3515ee4efbda5a1b93f8ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export const DELETE_MACHINE = 'DELETE_MACHINE'
export const ADD_UNIT = 'ADD_UNIT'
export const DELETE_UNIT = 'DELETE_UNIT'

export function deleteMachine(machineId) {
    return {
        type: DELETE_MACHINE,
        machineId,
    }
}

export function addUnit(machineId, unitType, unitId) {
    return {
        type: ADD_UNIT,
        machineId,
        unitType,
        unitId,
    }
}

export function deleteUnit(machineId, unitType, unitId) {
    return {
        type: DELETE_UNIT,
        machineId,
        unitType,
        unitId,
    }
}