PromucFlow_constructor/app/client/src/constants/messages.ts

11 lines
599 B
TypeScript
Raw Normal View History

export const ERROR_MESSAGE_SELECT_ACTION = "Please select an action";
export const ERROR_MESSAGE_SELECT_ACTION_TYPE = "Please select an action type";
2019-11-21 10:52:49 +00:00
export const ERROR_MESSAGE_CREATE_APPLICATION =
"We could not create the Application";
2019-11-25 09:15:11 +00:00
export const API_PATH_START_WITH_SLASH_ERROR = "Path cannot start with /";
export const FIELD_REQUIRED_ERROR = "This field is required";
export const VALID_FUNCTION_NAME_ERROR =
"Action name is not a valid function name";
export const UNIQUE_NAME_ERROR = "Action name must be unique";
2019-12-10 13:30:16 +00:00
export const WIDGET_TYPE_VALIDATION_ERROR = "Value does not match type";