mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
18 lines
323 B
JavaScript
18 lines
323 B
JavaScript
import fetch from '../utils/fetch';
|
|
|
|
import AppConstants from '../constants/application_constants';
|
|
|
|
|
|
let UserFetcher = {
|
|
/**
|
|
* Fetch one user from the API.
|
|
* If no arg is supplied, load the current user
|
|
*
|
|
*/
|
|
fetchOne() {
|
|
return fetch.get('user');
|
|
}
|
|
};
|
|
|
|
export default UserFetcher;
|