Basic mention support.

I still have to think about how to integrate them in the state system...
This commit is contained in:
Roger Braun 2016-11-26 21:09:41 +01:00
parent 8cd1c690ca
commit 6c2941dba0
8 changed files with 64 additions and 4 deletions

View file

@ -9,9 +9,14 @@ const backendInteractorService = (credentials) => {
return apiService.fetchConversation({id, credentials})
}
const fetchMentions = ({sinceId, username}) => {
return apiService.fetchMentions({sinceId, username, credentials})
}
const backendInteractorServiceInstance = {
fetchStatus,
fetchConversation,
fetchMentions,
verifyCredentials: apiService.verifyCredentials
}