2015-06-01 14:22:04 +02:00
|
|
|
import fetch from '../utils/fetch';
|
2015-05-26 13:48:00 +02:00
|
|
|
|
|
|
|
import AppConstants from '../constants/application_constants';
|
|
|
|
import FetchApiUtils from '../utils/fetch_api_utils';
|
|
|
|
|
|
|
|
|
2015-05-26 13:48:46 +02:00
|
|
|
let EditionFetcher = {
|
2015-05-26 13:48:00 +02:00
|
|
|
/**
|
|
|
|
* 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) {
|
2015-06-01 14:22:04 +02:00
|
|
|
return fetch.get('edition', {'bitcoin_id': editionId});
|
2015-05-26 13:48:00 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-26 13:48:46 +02:00
|
|
|
export default EditionFetcher;
|