mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
25 lines
636 B
JavaScript
25 lines
636 B
JavaScript
|
import fetch from 'isomorphic-fetch';
|
||
|
|
||
|
import AppConstants from '../constants/application_constants';
|
||
|
import FetchApiUtils from '../utils/fetch_api_utils';
|
||
|
|
||
|
|
||
|
let OwnershipFetcher = {
|
||
|
/**
|
||
|
* Fetch one user from the API.
|
||
|
* If no arg is supplied, load the current user
|
||
|
*
|
||
|
*/
|
||
|
fetchLoanContract(email) {
|
||
|
return fetch(AppConstants.baseUrl + 'ownership/loans/contract/?loanee=' + email, {
|
||
|
headers: {
|
||
|
'Authorization': 'Basic ' + AppConstants.debugCredentialBase64
|
||
|
}
|
||
|
}).then(
|
||
|
(res) => res.json()
|
||
|
);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default OwnershipFetcher;
|