diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | src/services/api/api.service.js | 3 | ||||
| -rw-r--r-- | src/services/backend_interactor_service/backend_interactor_service.js | 2 |
3 files changed, 5 insertions, 4 deletions
@@ -1,12 +1,12 @@ # pleroma_fe -> A Qvitter-style frontend for certain GS servers. +> A single column frontend for both Pleroma and GS servers.  # FOR ADMINS -You don't need to build Pleroma yourself. Check out https://gitgud.io/lambadalambda/pleroma-fe/wikis/dual-boot-with-qvitter to see how to run Pleroma and Qvitter at the same time. +You don't need to build Pleroma yourself. Check out https://git.pleroma.social/pleroma/pleroma-fe/wikis/dual-boot-with-qvitter to see how to run Pleroma and Qvitter at the same time. ## Build Setup diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js index 28f8936b..a1c6b657 100644 --- a/src/services/api/api.service.js +++ b/src/services/api/api.service.js @@ -160,9 +160,10 @@ const authHeaders = (user) => { } } -const externalProfile = (profileUrl) => { +const externalProfile = ({profileUrl, credentials}) => { let url = `${EXTERNAL_PROFILE_URL}?profileurl=${profileUrl}` return fetch(url, { + headers: authHeaders(credentials), method: 'GET' }).then((data) => data.json()) } diff --git a/src/services/backend_interactor_service/backend_interactor_service.js b/src/services/backend_interactor_service/backend_interactor_service.js index 9a0910dd..a99ea38a 100644 --- a/src/services/backend_interactor_service/backend_interactor_service.js +++ b/src/services/backend_interactor_service/backend_interactor_service.js @@ -46,7 +46,7 @@ const backendInteractorService = (credentials) => { const updateBanner = ({params}) => apiService.updateBanner({credentials, params}) const updateProfile = ({params}) => apiService.updateProfile({credentials, params}) - const externalProfile = (profileUrl) => apiService.externalProfile(profileUrl) + const externalProfile = (profileUrl) => apiService.externalProfile({profileUrl, credentials}) const backendInteractorServiceInstance = { fetchStatus, |
