Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | import getUserData from "./getUserData.js";
import usersOverview from "./usersOverview.js";
import updateUserName from "./updateUserName.js";
import passwordChecker from "./passwordChecker.js";
import changePassword from "./changePassword.js";
import usersCount from "./usersCount.js";
import getShoppingCart from "./getShoppingCart.js";
import addToShoppingCart from "./addToShoppingCart.js";
import removeFromShoppingCart from "./removeFromShoppingCart.js";
import setShoppingCart from "./setShoppingCart.js";
import clearShoppingCart from "./clearShoppingCart.js";
import getFavorites from "./getFavorites.js";
import clearFavorites from "./clearFavorites.js";
import toggleFavorites from "./toggleFavorites.js";
import setFavorites from "./setFavorites.js";
import getLocations from "./getLocations.js";
import addLocation from "./addLocation.js";
import setSelectedLocation from "./setSelectedLocation.js";
import deleteLocation from "./deleteLocation.js";
import getPaymentMethods from "./getPaymentMethods.js";
import addPaymentMethod from "./addPaymentMethod.js";
import setChoosedPaymentMethod from "./setChoosedPaymentMethod.js";
import deletePaymentMethod from "./deletePaymentMethod.js";
class UsersController {
constructor() { }
}
export default Object.assign(UsersController.prototype, {
getUserData,
usersOverview,
updateUserName,
passwordChecker,
changePassword,
usersCount,
getShoppingCart,
addToShoppingCart,
removeFromShoppingCart,
setShoppingCart,
clearShoppingCart,
getShoppingCart,
getFavorites,
toggleFavorites,
clearFavorites,
setFavorites,
getLocations,
addLocation,
setSelectedLocation,
deleteLocation,
getPaymentMethods,
addPaymentMethod,
setChoosedPaymentMethod,
deletePaymentMethod
}) |