10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
|
import { helpPagePath } from '~/helpers/help_page_helper';
|
||
|
|
||
|
export const STATUS_TYPES = {
|
||
|
SUCCESS: 'success',
|
||
|
WARNING: 'warning',
|
||
|
DANGER: 'danger',
|
||
|
};
|
||
|
|
||
|
export const UPGRADE_DOCS_URL = helpPagePath('update/index');
|