datahub/wherehows-web/app/constants/notifications.ts

16 lines
547 B
TypeScript
Raw Normal View History

import { NotificationEvent } from 'wherehows-web/services/notifications';
/**
* Base animation speed for the banner alerts.
* NOTE: This value corresponds with animation speed value set in styles/abstracts/_variables.scss
*/
export const bannerAnimationSpeed = 0.6;
/**
* Base message for 2 factor auth banner message for the login screen.
*/
2018-05-14 14:17:05 -07:00
export const twoFABannerMessage =
'We have enabled 2-factor authentication. Login now requires your password + Symantec VIP Token.';
export const twoFABannerType = NotificationEvent['confirm'];