mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 18:37:04 +00:00
20 lines
270 B
TypeScript
20 lines
270 B
TypeScript
export const EXECUTION_STATUS = {
|
|
STARTED: 0,
|
|
RESOLVED: 1,
|
|
REJECTED: -1,
|
|
CANCELLED: -2
|
|
};
|
|
|
|
export const JOB_STATUS = {
|
|
PENDING: 0,
|
|
RESOLVED: 1,
|
|
REJECTED: -1,
|
|
CANCELLED: -2
|
|
};
|
|
|
|
export const BRANCH_INDEX = {
|
|
DEFAULT: null,
|
|
ON_TRUE: 1,
|
|
ON_FALSE: 0
|
|
};
|