department-of-veterans-affairs/vets-website

View on GitHub
src/applications/post-911-gib-status/utils/constants.js

Summary

Maintainability
A
0 mins
Test Coverage
// Action types
export const BACKEND_AUTHENTICATION_ERROR = 'BACKEND_AUTHENTICATION_ERROR';
export const BACKEND_SERVICE_ERROR = 'BACKEND_SERVICE_ERROR';
export const GET_ENROLLMENT_DATA_FAILURE = 'GET_ENROLLMENT_DATA_FAILURE';
export const GET_ENROLLMENT_DATA_SUCCESS = 'GET_ENROLLMENT_DATA_SUCCESS';
export const NO_CHAPTER33_RECORD_AVAILABLE = 'NO_CHAPTER33_RECORD_AVAILABLE';
export const SET_SERVICE_AVAILABILITY = 'SET_SERVICE_AVAILABILITY';
export const SET_SERVICE_UPTIME_REMAINING = 'SET_SERVICE_UPTIME_REMAINING';
export const SERVICE_DOWNTIME_ERROR = 'SERVICE_DOWNTIME_ERROR';

// States
export const SERVICE_AVAILABILITY_STATES = Object.freeze({
  unrequested: 'unrequested',
  pending: 'pending',
  up: 'up',
  down: 'down',
});