Add follow import to user settings.

This commit is contained in:
eal 2017-12-23 16:44:22 +02:00
parent 8f3926a096
commit a058941aed
5 changed files with 67 additions and 4 deletions

View file

@ -59,6 +59,7 @@ const backendInteractorService = (credentials) => {
const updateProfile = ({params}) => apiService.updateProfile({credentials, params})
const externalProfile = (profileUrl) => apiService.externalProfile({profileUrl, credentials})
const followImport = ({params}) => apiService.followImport({params, credentials})
const backendInteractorServiceInstance = {
fetchStatus,
@ -80,7 +81,8 @@ const backendInteractorService = (credentials) => {
updateBg,
updateBanner,
updateProfile,
externalProfile
externalProfile,
followImport
}
return backendInteractorServiceInstance