@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
12 lines (11 loc) • 485 B
TypeScript
/**
* Initialize the kanban states table.
* Creates a inbox and finished state if they do not exist.
*/
export declare function initKanbanStates(): Promise<void>;
/**
* Initialize the current ticket states table. if a ticket has no entry in the current ticket states table, create one.
* If the ticket has no state, initialize it with the inbox state.
*/
export declare function initCurrentTicketStates(): Promise<void>;
export declare function initEnabledFlag(): Promise<void>;