(isRefreshing, loading, isLoadMore = false)
| 35 | } |
| 36 | |
| 37 | export function fetchArticleList(isRefreshing, loading, isLoadMore = false) { |
| 38 | return { |
| 39 | type: types.FETCH_ARTICLE_LIST, |
| 40 | isRefreshing, |
| 41 | loading, |
| 42 | isLoadMore |
| 43 | }; |
| 44 | } |
| 45 | |
| 46 | export function receiveArticleList(articleList, typeId) { |
| 47 | return { |
no outgoing calls
no test coverage detected