mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
16 lines
605 B
Go
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';
|