1
0
mirror of https://github.com/ascribe/onion.git synced 2024-09-28 03:58:55 +02:00
onion/js/fetchers/ownership_fetcher.js
2015-07-02 11:54:33 +02:00

18 lines
426 B
JavaScript

'use strict';
import requests from '../utils/requests';
import AppConstants from '../constants/application_constants';
let OwnershipFetcher = {
/**
* Fetch one user from the API.
* If no arg is supplied, load the current user
*/
fetchLoanContract(email) {
return requests.get(AppConstants.apiEndpoint + 'ownership/loans/contract/?loanee=' + email);
}
};
export default OwnershipFetcher;