1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 09:35:10 +01:00
onion/js/fetchers/edition_fetcher.js

25 lines
613 B
JavaScript
Raw Normal View History

import fetch from 'isomorphic-fetch';
import AppConstants from '../constants/application_constants';
import FetchApiUtils from '../utils/fetch_api_utils';
2015-05-26 13:48:46 +02:00
let EditionFetcher = {
/**
* Fetch one user from the API.
* If no arg is supplied, load the current user
*
*/
2015-05-26 14:58:11 +02:00
fetchOne(editionId) {
return fetch(AppConstants.baseUrl + 'editions/' + editionId + '/', {
headers: {
'Authorization': 'Basic ' + AppConstants.debugCredentialBase64
}
2015-05-26 14:58:11 +02:00
}).then(
(res) => res.json()
);
}
};
2015-05-26 13:48:46 +02:00
export default EditionFetcher;