Files
crawlab/frontend/crawlab-ui/src/constants/plugin.ts

16 lines
605 B
Go

export const PLUGIN_UI_COMPONENT_TYPE_VIEW = 'view';
export const PLUGIN_UI_COMPONENT_TYPE_TAB = 'tab';
export const PLUGIN_DEPLOY_MODE_MASTER = 'master';
export const PLUGIN_DEPLOY_MODE_ALL = 'all';
export const PLUGIN_STATUS_INSTALLING = 'installing';
export const PLUGIN_STATUS_INSTALL_ERROR = 'install_error';
export const PLUGIN_STATUS_STOPPED = 'stopped';
export const PLUGIN_STATUS_RUNNING = 'running';
export const PLUGIN_STATUS_ERROR = 'error';
export const PLUGIN_INSTALL_TYPE_PUBLIC = 'public';
export const PLUGIN_INSTALL_TYPE_GIT = 'git';
export const PLUGIN_INSTALL_TYPE_LOCAL = 'local';