initial draft for follows/following pagination

This commit is contained in:
shpuld 2019-01-31 21:11:28 +02:00
parent fbe7af3d56
commit 8ce513ed09
7 changed files with 34 additions and 13 deletions

View file

@ -10,12 +10,12 @@ const backendInteractorService = (credentials) => {
return apiService.fetchConversation({id, credentials})
}
const fetchFriends = ({id}) => {
return apiService.fetchFriends({id, credentials})
const fetchFriends = ({id, page}) => {
return apiService.fetchFriends({id, page, credentials})
}
const fetchFollowers = ({id}) => {
return apiService.fetchFollowers({id, credentials})
const fetchFollowers = ({id, page}) => {
return apiService.fetchFollowers({id, page, credentials})
}
const fetchAllFollowing = ({username}) => {