backend interactor service: implement fetchFollowRequests()

This commit is contained in:
William Pitcock 2018-06-06 22:29:02 +00:00
parent 4e64514aa9
commit 4efb528a52

View file

@ -51,6 +51,7 @@ const backendInteractorService = (credentials) => {
}
const fetchMutes = () => apiService.fetchMutes({credentials})
const fetchFollowRequests = () => apiService.fetchFollowRequests({credentials})
const register = (params) => apiService.register(params)
const updateAvatar = ({params}) => apiService.updateAvatar({credentials, params})
@ -87,7 +88,8 @@ const backendInteractorService = (credentials) => {
externalProfile,
followImport,
deleteAccount,
changePassword
changePassword,
fetchFollowRequests
}
return backendInteractorServiceInstance