All files / src/apps/authentication/redux actionTypes.ts

100% Statements 7/7
100% Branches 0/0
100% Functions 0/0
100% Lines 7/7

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 181x 1x 1x 1x 1x 1x 1x                      
const LOGIN_ACTION = "authentication/login";
const LOGOUT_ACTION = "authentication/logout";
const GET_USER_DETAILS_ACTION = "authentication/getUserDetails";
const GET_PROFILE_ACTION = "authentication/getProfile";
const GET_USER_ORGS_ACTION = "authentication/getUserOrgs";
const SET_NEXT_PAGE_ACTION = "authentication/nextPage";
const CLEAR_NEXT_PAGE_ACTION = "authentication/nextPage";
 
export {
  LOGIN_ACTION,
  LOGOUT_ACTION,
  GET_USER_DETAILS_ACTION,
  GET_PROFILE_ACTION,
  GET_USER_ORGS_ACTION,
  SET_NEXT_PAGE_ACTION,
  CLEAR_NEXT_PAGE_ACTION
};