You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/src/store/pbx-config/state.js

27 lines
628 B

'use strict';
import { ListState, AddState, RemoveState } from '../common'
export default {
pilot: null,
groups: {},
groupsOrdered: [],
seats: {},
seatsOrdered: [],
numbers: [],
numbersMap : {},
listAllState: ListState.initiated,
listAllError: null,
listLoadingSilently: false,
addGroupState: AddState.button,
addGroupError: null,
addSeatState: AddState.button,
addSeatError: null,
removeSeatState: RemoveState.initiated,
removeSeatError: null,
removeSeatItem: null,
listItemUpdating: null,
listItemUpdateState: null,
listItemUpdateError: null
}