All files / src/redux actionTypes.js

100% Statements 12/12
100% Branches 0/0
100% Functions 0/0
100% Lines 12/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24      9x 9x 9x         9x 9x 9x 9x 9x         9x 9x 9x 9x  
/**
 * LOGIN ACTIONS
 */
export const LOGIN_SUCCESS = "LOGIN_SUCCESS";
export const LOGIN_FAILURE = "LOGIN_FAILURE";
export const LOGOUT = "LOGOUT";
 
/**
 * SEARCH ACTIONS
 */
export const SEARCH = "SEARCH";
export const SEARCH_STARTED = "SEARCH_STARTED";
export const SEARCH_SUCCEEDED = "SEARCH_SUCCEEDED";
export const SEARCH_FAILED = "SEARCH_FAILED";
export const SEARCH_CLEAR = "SEARCH_CLEAR";
 
/**
 * RECOMMENDATIONS
 */
export const RECOMMENDATIONS = "RECOMMENDATIONS";
export const RECOMMENDATIONS_STARTED = "RECOMMENDATIONS_STARTED";
export const RECOMMENDATIONS_SUCCEEDED = "RECOMMENDATIONS_SUCCEEDED";
export const RECOMMENDATIONS_FAILED = "RECOMMENDATIONS_FAILED";