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 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
|
||||
|
|
Loading…
Reference in a new issue