logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 38749e6c4ac27a20190cb8443e4692cae95252f0
parent: 9380abc8cd04459eaa5c19b0eb3f6ce3c5be8731
Author: Roger Braun <roger@rogerbraun.net>
Date:   Tue, 22 Nov 2016 15:15:43 +0100

Remove commented out old api service.

Diffstat:

Msrc/services/api/api.service.js68--------------------------------------------------------------------
1 file changed, 0 insertions(+), 68 deletions(-)

diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js @@ -110,71 +110,3 @@ const apiService = { } export default apiService - -// // TODO: This should probably be in redux. -// let authHeaders = {}; - -// const apiServiceFactory = ($http) => { -// // Public -// const fetchConversation = (id) => { -// return $http.get(`${CONVERSATION_URL}/${id}.json?count=100`); -// }; - -// const fetchTimeline = ({timeline, since = false, until = false}) => { -// const timelineUrls = { -// public: PUBLIC_TIMELINE_URL, -// friends: FRIENDS_TIMELINE_URL, -// 'public-and-external': PUBLIC_AND_EXTERNAL_TIMELINE_URL -// }; - -// let url = timelineUrls[timeline]; - -// if(since) { -// url += `?since_id=${since}`; -// } - -// if(until) { -// url += `?max_id=${until}`; -// } - -// return fetch(url, { headers: authHeaders }).then((data) => data.json()); -// }; - -// // Need credentials -// const verifyCredentials = (user) => { -// const base64 = btoa(`${user.username}:${user.password}`); -// authHeaders = { "Authorization": `Basic ${base64}` }; -// return $http.post(LOGIN_URL, null, { headers: authHeaders }); -// }; - -// const unfavorite = (id) => $http.post(`${UNFAVORITE_URL}/${id}.json`, null, {headers: authHeaders}); - -// // This was impossible to get to work with $http. You're supposed to set Content-Type -// // undefined in the header so it sends the correct header. It would always send a json -// // content type. This method from jQuery worked right away... -// // Also, this method is only available as XML output. OLOLOLOLO -// const uploadMedia = (formData) => ajax({ -// url: MEDIA_UPLOAD_URL, -// data: formData, -// type: 'POST', -// processData: false, -// contentType: false, -// headers: authHeaders -// }); - -// const apiService = { -// verifyCredentials, -// fetchConversation, -// postStatus, -// uploadMedia, -// favorite, -// unfavorite, -// fetchTimeline -// }; - -// return apiService; -// }; - -// apiServiceFactory.$inject = ['$http']; - -// export default apiServiceFactory;