Add user finder.

This commit is contained in:
Roger Braun 2017-05-12 18:54:12 +02:00
parent 1f8d303863
commit 2ec7069b3c
6 changed files with 49 additions and 3 deletions

View file

@ -36,6 +36,8 @@ const backendInteractorService = (credentials) => {
const fetchMutes = () => apiService.fetchMutes({credentials})
const externalProfile = (profileUrl) => apiService.externalProfile(profileUrl)
const backendInteractorServiceInstance = {
fetchStatus,
fetchConversation,
@ -46,7 +48,8 @@ const backendInteractorService = (credentials) => {
verifyCredentials: apiService.verifyCredentials,
startFetching,
setUserMute,
fetchMutes
fetchMutes,
externalProfile
}
return backendInteractorServiceInstance