summaryrefslogtreecommitdiff
path: root/src/actions/topology/machine.js
blob: 48d880524b3d3bbc8081c2810dfa9e3e0db9f91d (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
export const DELETE_MACHINE = "DELETE_MACHINE";
export const ADD_UNIT = "ADD_UNIT";
export const DELETE_UNIT = "DELETE_UNIT";

export function deleteMachine() {
    return {
        type: DELETE_MACHINE
    };
}

export function addUnit(unitType, id) {
    return {
        type: ADD_UNIT,
        unitType,
        id
    };
}

export function deleteUnit(unitType, index) {
    return {
        type: DELETE_UNIT,
        unitType,
        index
    };
}