debian-mirror-gitlab/app/assets/javascripts/gitlab_version_check/constants.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
935 B
JavaScript
Raw Normal View History

2023-01-13 00:05:48 +05:30
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');
2023-03-04 22:38:38 +05:30
export const ABOUT_RELEASES_PAGE = 'https://about.gitlab.com/releases/categories/releases/';
export const ALERT_MODAL_ID = 'security-patch-upgrade-alert-modal';
export const COOKIE_EXPIRATION = 3;
export const COOKIE_SUFFIX = '-hide-alert-modal';
export const TRACKING_ACTIONS = {
RENDER: 'render',
CLICK_LINK: 'click_link',
CLICK_BUTTON: 'click_button',
};
export const TRACKING_LABELS = {
MODAL: 'security_patch_upgrade_alert_modal',
LEARN_MORE_LINK: 'security_patch_upgrade_alert_modal_learn_more',
REMIND_ME_BTN: 'security_patch_upgrade_alert_modal_remind_3_days',
UPGRADE_BTN_LINK: 'security_patch_upgrade_alert_modal_upgrade_now',
DISMISS: 'security_patch_upgrade_alert_modal_close',
};