(res)
| 64 | |
| 65 | // MOVIES LIST |
| 66 | export function retrieveMoviesListSuccess(res) { |
| 67 | return { |
| 68 | type: types.RETRIEVE_MOVIES_LIST_SUCCESS, |
| 69 | list: res.data |
| 70 | }; |
| 71 | } |
| 72 | |
| 73 | export function retrieveMoviesList(type, page) { |
| 74 | return function (dispatch) { |
no outgoing calls
no test coverage detected