diff --git a/js/fetchers/user_fetcher.js b/js/fetchers/user_fetcher.js deleted file mode 100644 index eca7494d..00000000 --- a/js/fetchers/user_fetcher.js +++ /dev/null @@ -1,20 +0,0 @@ -'use strict'; - -import requests from '../utils/requests'; -import ApiUrls from '../constants/api_urls'; - -let UserFetcher = { - /** - * Fetch one user from the API. - * If no arg is supplied, load the current user - */ - fetchOne() { - return requests.get('user'); - }, - - logout() { - return requests.get(ApiUrls.users_logout); - } -}; - -export default UserFetcher;