forked from AkkomaGang/akkoma-fe
backend interactor service: implement fetchFollowRequests()
This commit is contained in:
parent
4e64514aa9
commit
4efb528a52
1 changed files with 3 additions and 1 deletions
|
@ -51,6 +51,7 @@ const backendInteractorService = (credentials) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const fetchMutes = () => apiService.fetchMutes({credentials})
|
const fetchMutes = () => apiService.fetchMutes({credentials})
|
||||||
|
const fetchFollowRequests = () => apiService.fetchFollowRequests({credentials})
|
||||||
|
|
||||||
const register = (params) => apiService.register(params)
|
const register = (params) => apiService.register(params)
|
||||||
const updateAvatar = ({params}) => apiService.updateAvatar({credentials, params})
|
const updateAvatar = ({params}) => apiService.updateAvatar({credentials, params})
|
||||||
|
@ -87,7 +88,8 @@ const backendInteractorService = (credentials) => {
|
||||||
externalProfile,
|
externalProfile,
|
||||||
followImport,
|
followImport,
|
||||||
deleteAccount,
|
deleteAccount,
|
||||||
changePassword
|
changePassword,
|
||||||
|
fetchFollowRequests
|
||||||
}
|
}
|
||||||
|
|
||||||
return backendInteractorServiceInstance
|
return backendInteractorServiceInstance
|
||||||
|
|
Loading…
Reference in a new issue