├── .env.example ├── .github └── pull_request_template.md ├── .gitignore ├── .sequelizerc ├── .travis.yml ├── README.md ├── admin-demo.gif ├── client ├── .editorconfig ├── .gitignore ├── babel.config.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo-long.png │ ├── logo.png │ └── robots.txt ├── src │ ├── App.vue │ ├── apis │ │ ├── admin.js │ │ ├── authorization.js │ │ ├── location.js │ │ ├── order.js │ │ ├── owner.js │ │ ├── restaurants.js │ │ └── users.js │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── AdminDashboardToday.vue │ │ ├── AdminFilterPanel.vue │ │ ├── AdminOrdersTable.vue │ │ ├── AdminRestaurantsTable.vue │ │ ├── AdminUsersTable.vue │ │ ├── Banner │ │ │ ├── DropdownBanner.vue │ │ │ ├── ImageBanner.vue │ │ │ └── ImageHeaderBanner.vue │ │ ├── Breadcrumb.vue │ │ ├── Button │ │ │ ├── FetchMoreButton.vue │ │ │ ├── ProcessButton.vue │ │ │ └── Tooltip.vue │ │ ├── Card │ │ │ ├── BarChartHorizontal.vue │ │ │ ├── DashboardCommentCard.vue │ │ │ ├── ImageCard.vue │ │ │ ├── LineChartCard.vue │ │ │ ├── MealHorizontalCard.vue │ │ │ ├── MealVerticalCard.vue │ │ │ ├── NewOrderCard.vue │ │ │ ├── OrderCard.vue │ │ │ ├── OwnerDishCard.vue │ │ │ ├── PieChartCard.vue │ │ │ ├── RestaurantCard.vue │ │ │ └── UserProfileCard.vue │ │ ├── Chart │ │ │ ├── BarChartTemplate.vue │ │ │ ├── LineChartTemplate.vue │ │ │ └── PieChartTemplate.vue │ │ ├── CommentMedia.vue │ │ ├── CustomCarousel.vue │ │ ├── CustomDatePicker.vue │ │ ├── CustomRatingInput.vue │ │ ├── CustomSelect.vue │ │ ├── CustomSelectInput.vue │ │ ├── Districts.vue │ │ ├── Footer.vue │ │ ├── GMap.vue │ │ ├── Header.vue │ │ ├── Loader.vue │ │ ├── Navbar │ │ │ ├── AdminSideNavBar.vue │ │ │ ├── NavbarToggler.vue │ │ │ ├── OrderNavPill.vue │ │ │ ├── OwnerDishNavPill.vue │ │ │ ├── OwnerSideNavBar.vue │ │ │ ├── TopLogoNavbar.vue │ │ │ └── UserNavbar.vue │ │ ├── OrderCommentForm.vue │ │ ├── OrderDetail.vue │ │ ├── OrderForm.vue │ │ ├── OrderProcess.vue │ │ ├── OrderRestaurantDetail.vue │ │ ├── OwnerDishForm.vue │ │ ├── OwnerMenuForm.vue │ │ ├── OwnerOrdersTable.vue │ │ ├── Pagination.vue │ │ ├── Placeholder │ │ │ ├── Message.vue │ │ │ └── SkeletonBox.vue │ │ ├── Questions.vue │ │ ├── RatingStars.vue │ │ ├── RestaurantInfo.vue │ │ ├── RestaurantInfoForm.vue │ │ ├── SettingForm.vue │ │ ├── SignupForm.vue │ │ └── UserProfileForm.vue │ ├── main.js │ ├── router.js │ ├── scss │ │ ├── _base.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ ├── store.js │ ├── utils │ │ ├── helpers.js │ │ ├── image-url.js │ │ └── mixins.js │ └── views │ │ ├── AdminDashboard.vue │ │ ├── AdminOrders.vue │ │ ├── AdminRestaurantEdit.vue │ │ ├── AdminRestaurants.vue │ │ ├── AdminUserEdit.vue │ │ ├── AdminUsers.vue │ │ ├── Faq.vue │ │ ├── Home.vue │ │ ├── Login.vue │ │ ├── NotFound.vue │ │ ├── Order.vue │ │ ├── OrderComment.vue │ │ ├── OrderEdit.vue │ │ ├── OrderNew.vue │ │ ├── OrdersTomorrow.vue │ │ ├── OwnerDashboard.vue │ │ ├── OwnerDishEdit.vue │ │ ├── OwnerDishNew.vue │ │ ├── OwnerDishes.vue │ │ ├── OwnerInfo.vue │ │ ├── OwnerMenu.vue │ │ ├── OwnerOrders.vue │ │ ├── Restaurant.vue │ │ ├── Restaurants.vue │ │ ├── Signup.vue │ │ ├── Subscribe.vue │ │ ├── UserOrders.vue │ │ └── UserProfile.vue └── vue.config.js ├── guest-demo.gif ├── owner-demo.gif ├── package.json └── server ├── _avatar_upload.js ├── _helpers.js ├── app.js ├── config ├── auth.js ├── config.json ├── cron.js ├── passport.js └── query │ ├── general.js │ └── heroku.js ├── controllers ├── adminController.js ├── locationController.js ├── mainController.js ├── orderController.js ├── ownerController.js ├── restController.js └── userController.js ├── emailTemplate ├── orderInfo.hbs └── subscription.hbs ├── location ├── categories.json ├── comment.json ├── district.json ├── foodImg.json ├── plan.json ├── restImg.json ├── stores.json └── users.json ├── middleware └── middleware.js ├── migrations ├── 20191015025737-create-user.js ├── 20191015025745-create-comment.js ├── 20191015025800-create-restaurant.js ├── 20191015025806-create-category.js ├── 20191015025815-create-meal.js ├── 20191015025820-create-order-item.js ├── 20191015025824-create-order.js ├── 20191015025829-create-like.js ├── 20191015025839-create-subscription.js └── 20191015025850-create-payment.js ├── models ├── category.js ├── comment.js ├── index.js ├── like.js ├── meal.js ├── order.js ├── orderitem.js ├── payment.js ├── restaurant.js ├── subscription.js └── user.js ├── routes ├── adminRoute.js ├── index.js ├── locationRoute.js ├── mainRoute.js ├── orderRoute.js ├── ownerRoute.js ├── restRoute.js └── userRoute.js ├── seeders └── 20191015083302-nextmeal-test-file.js └── test ├── check.png ├── models ├── Category.spec.js ├── Comment.spec.js ├── Like.spec.js ├── Meal.spec.js ├── Order.spec.js ├── OrderItem.spec.js ├── Payment.spec.js ├── Restaurant.spec.js ├── Subscription.spec.js └── User.spec.js └── requests ├── admin ├── restaurant.spec.js └── user.spec.js ├── owner └── restaurant.spec.js └── user.spec.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/.env.example -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/.gitignore -------------------------------------------------------------------------------- /.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/.sequelizerc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/README.md -------------------------------------------------------------------------------- /admin-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/admin-demo.gif -------------------------------------------------------------------------------- /client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/.editorconfig -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/babel.config.js -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/public/logo-long.png -------------------------------------------------------------------------------- /client/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/public/logo.png -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /api/ -------------------------------------------------------------------------------- /client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/App.vue -------------------------------------------------------------------------------- /client/src/apis/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/apis/admin.js -------------------------------------------------------------------------------- /client/src/apis/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/apis/authorization.js -------------------------------------------------------------------------------- /client/src/apis/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/apis/location.js -------------------------------------------------------------------------------- /client/src/apis/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/apis/order.js -------------------------------------------------------------------------------- /client/src/apis/owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/apis/owner.js -------------------------------------------------------------------------------- /client/src/apis/restaurants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/apis/restaurants.js -------------------------------------------------------------------------------- /client/src/apis/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/apis/users.js -------------------------------------------------------------------------------- /client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/assets/logo.png -------------------------------------------------------------------------------- /client/src/components/AdminDashboardToday.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/AdminDashboardToday.vue -------------------------------------------------------------------------------- /client/src/components/AdminFilterPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/AdminFilterPanel.vue -------------------------------------------------------------------------------- /client/src/components/AdminOrdersTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/AdminOrdersTable.vue -------------------------------------------------------------------------------- /client/src/components/AdminRestaurantsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/AdminRestaurantsTable.vue -------------------------------------------------------------------------------- /client/src/components/AdminUsersTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/AdminUsersTable.vue -------------------------------------------------------------------------------- /client/src/components/Banner/DropdownBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Banner/DropdownBanner.vue -------------------------------------------------------------------------------- /client/src/components/Banner/ImageBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Banner/ImageBanner.vue -------------------------------------------------------------------------------- /client/src/components/Banner/ImageHeaderBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Banner/ImageHeaderBanner.vue -------------------------------------------------------------------------------- /client/src/components/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Breadcrumb.vue -------------------------------------------------------------------------------- /client/src/components/Button/FetchMoreButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Button/FetchMoreButton.vue -------------------------------------------------------------------------------- /client/src/components/Button/ProcessButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Button/ProcessButton.vue -------------------------------------------------------------------------------- /client/src/components/Button/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Button/Tooltip.vue -------------------------------------------------------------------------------- /client/src/components/Card/BarChartHorizontal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/BarChartHorizontal.vue -------------------------------------------------------------------------------- /client/src/components/Card/DashboardCommentCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/DashboardCommentCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/ImageCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/ImageCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/LineChartCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/LineChartCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/MealHorizontalCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/MealHorizontalCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/MealVerticalCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/MealVerticalCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/NewOrderCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/NewOrderCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/OrderCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/OrderCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/OwnerDishCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/OwnerDishCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/PieChartCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/PieChartCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/RestaurantCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/RestaurantCard.vue -------------------------------------------------------------------------------- /client/src/components/Card/UserProfileCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Card/UserProfileCard.vue -------------------------------------------------------------------------------- /client/src/components/Chart/BarChartTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Chart/BarChartTemplate.vue -------------------------------------------------------------------------------- /client/src/components/Chart/LineChartTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Chart/LineChartTemplate.vue -------------------------------------------------------------------------------- /client/src/components/Chart/PieChartTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Chart/PieChartTemplate.vue -------------------------------------------------------------------------------- /client/src/components/CommentMedia.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/CommentMedia.vue -------------------------------------------------------------------------------- /client/src/components/CustomCarousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/CustomCarousel.vue -------------------------------------------------------------------------------- /client/src/components/CustomDatePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/CustomDatePicker.vue -------------------------------------------------------------------------------- /client/src/components/CustomRatingInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/CustomRatingInput.vue -------------------------------------------------------------------------------- /client/src/components/CustomSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/CustomSelect.vue -------------------------------------------------------------------------------- /client/src/components/CustomSelectInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/CustomSelectInput.vue -------------------------------------------------------------------------------- /client/src/components/Districts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Districts.vue -------------------------------------------------------------------------------- /client/src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Footer.vue -------------------------------------------------------------------------------- /client/src/components/GMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/GMap.vue -------------------------------------------------------------------------------- /client/src/components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Header.vue -------------------------------------------------------------------------------- /client/src/components/Loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Loader.vue -------------------------------------------------------------------------------- /client/src/components/Navbar/AdminSideNavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Navbar/AdminSideNavBar.vue -------------------------------------------------------------------------------- /client/src/components/Navbar/NavbarToggler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Navbar/NavbarToggler.vue -------------------------------------------------------------------------------- /client/src/components/Navbar/OrderNavPill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Navbar/OrderNavPill.vue -------------------------------------------------------------------------------- /client/src/components/Navbar/OwnerDishNavPill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Navbar/OwnerDishNavPill.vue -------------------------------------------------------------------------------- /client/src/components/Navbar/OwnerSideNavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Navbar/OwnerSideNavBar.vue -------------------------------------------------------------------------------- /client/src/components/Navbar/TopLogoNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Navbar/TopLogoNavbar.vue -------------------------------------------------------------------------------- /client/src/components/Navbar/UserNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Navbar/UserNavbar.vue -------------------------------------------------------------------------------- /client/src/components/OrderCommentForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/OrderCommentForm.vue -------------------------------------------------------------------------------- /client/src/components/OrderDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/OrderDetail.vue -------------------------------------------------------------------------------- /client/src/components/OrderForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/OrderForm.vue -------------------------------------------------------------------------------- /client/src/components/OrderProcess.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/OrderProcess.vue -------------------------------------------------------------------------------- /client/src/components/OrderRestaurantDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/OrderRestaurantDetail.vue -------------------------------------------------------------------------------- /client/src/components/OwnerDishForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/OwnerDishForm.vue -------------------------------------------------------------------------------- /client/src/components/OwnerMenuForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/OwnerMenuForm.vue -------------------------------------------------------------------------------- /client/src/components/OwnerOrdersTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/OwnerOrdersTable.vue -------------------------------------------------------------------------------- /client/src/components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Pagination.vue -------------------------------------------------------------------------------- /client/src/components/Placeholder/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Placeholder/Message.vue -------------------------------------------------------------------------------- /client/src/components/Placeholder/SkeletonBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Placeholder/SkeletonBox.vue -------------------------------------------------------------------------------- /client/src/components/Questions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/Questions.vue -------------------------------------------------------------------------------- /client/src/components/RatingStars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/RatingStars.vue -------------------------------------------------------------------------------- /client/src/components/RestaurantInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/RestaurantInfo.vue -------------------------------------------------------------------------------- /client/src/components/RestaurantInfoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/RestaurantInfoForm.vue -------------------------------------------------------------------------------- /client/src/components/SettingForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/SettingForm.vue -------------------------------------------------------------------------------- /client/src/components/SignupForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/SignupForm.vue -------------------------------------------------------------------------------- /client/src/components/UserProfileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/components/UserProfileForm.vue -------------------------------------------------------------------------------- /client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/main.js -------------------------------------------------------------------------------- /client/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/router.js -------------------------------------------------------------------------------- /client/src/scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/scss/_base.scss -------------------------------------------------------------------------------- /client/src/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/scss/_mixins.scss -------------------------------------------------------------------------------- /client/src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/scss/_variables.scss -------------------------------------------------------------------------------- /client/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/store.js -------------------------------------------------------------------------------- /client/src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/utils/helpers.js -------------------------------------------------------------------------------- /client/src/utils/image-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/utils/image-url.js -------------------------------------------------------------------------------- /client/src/utils/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/utils/mixins.js -------------------------------------------------------------------------------- /client/src/views/AdminDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/AdminDashboard.vue -------------------------------------------------------------------------------- /client/src/views/AdminOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/AdminOrders.vue -------------------------------------------------------------------------------- /client/src/views/AdminRestaurantEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/AdminRestaurantEdit.vue -------------------------------------------------------------------------------- /client/src/views/AdminRestaurants.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/AdminRestaurants.vue -------------------------------------------------------------------------------- /client/src/views/AdminUserEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/AdminUserEdit.vue -------------------------------------------------------------------------------- /client/src/views/AdminUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/AdminUsers.vue -------------------------------------------------------------------------------- /client/src/views/Faq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/Faq.vue -------------------------------------------------------------------------------- /client/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/Home.vue -------------------------------------------------------------------------------- /client/src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/Login.vue -------------------------------------------------------------------------------- /client/src/views/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/NotFound.vue -------------------------------------------------------------------------------- /client/src/views/Order.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/Order.vue -------------------------------------------------------------------------------- /client/src/views/OrderComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OrderComment.vue -------------------------------------------------------------------------------- /client/src/views/OrderEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OrderEdit.vue -------------------------------------------------------------------------------- /client/src/views/OrderNew.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OrderNew.vue -------------------------------------------------------------------------------- /client/src/views/OrdersTomorrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OrdersTomorrow.vue -------------------------------------------------------------------------------- /client/src/views/OwnerDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OwnerDashboard.vue -------------------------------------------------------------------------------- /client/src/views/OwnerDishEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OwnerDishEdit.vue -------------------------------------------------------------------------------- /client/src/views/OwnerDishNew.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OwnerDishNew.vue -------------------------------------------------------------------------------- /client/src/views/OwnerDishes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OwnerDishes.vue -------------------------------------------------------------------------------- /client/src/views/OwnerInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OwnerInfo.vue -------------------------------------------------------------------------------- /client/src/views/OwnerMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OwnerMenu.vue -------------------------------------------------------------------------------- /client/src/views/OwnerOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/OwnerOrders.vue -------------------------------------------------------------------------------- /client/src/views/Restaurant.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/Restaurant.vue -------------------------------------------------------------------------------- /client/src/views/Restaurants.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/Restaurants.vue -------------------------------------------------------------------------------- /client/src/views/Signup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/Signup.vue -------------------------------------------------------------------------------- /client/src/views/Subscribe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/Subscribe.vue -------------------------------------------------------------------------------- /client/src/views/UserOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/UserOrders.vue -------------------------------------------------------------------------------- /client/src/views/UserProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/src/views/UserProfile.vue -------------------------------------------------------------------------------- /client/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/client/vue.config.js -------------------------------------------------------------------------------- /guest-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/guest-demo.gif -------------------------------------------------------------------------------- /owner-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/owner-demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/package.json -------------------------------------------------------------------------------- /server/_avatar_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/_avatar_upload.js -------------------------------------------------------------------------------- /server/_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/_helpers.js -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/app.js -------------------------------------------------------------------------------- /server/config/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/config/auth.js -------------------------------------------------------------------------------- /server/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/config/config.json -------------------------------------------------------------------------------- /server/config/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/config/cron.js -------------------------------------------------------------------------------- /server/config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/config/passport.js -------------------------------------------------------------------------------- /server/config/query/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/config/query/general.js -------------------------------------------------------------------------------- /server/config/query/heroku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/config/query/heroku.js -------------------------------------------------------------------------------- /server/controllers/adminController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/controllers/adminController.js -------------------------------------------------------------------------------- /server/controllers/locationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/controllers/locationController.js -------------------------------------------------------------------------------- /server/controllers/mainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/controllers/mainController.js -------------------------------------------------------------------------------- /server/controllers/orderController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/controllers/orderController.js -------------------------------------------------------------------------------- /server/controllers/ownerController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/controllers/ownerController.js -------------------------------------------------------------------------------- /server/controllers/restController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/controllers/restController.js -------------------------------------------------------------------------------- /server/controllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/controllers/userController.js -------------------------------------------------------------------------------- /server/emailTemplate/orderInfo.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/emailTemplate/orderInfo.hbs -------------------------------------------------------------------------------- /server/emailTemplate/subscription.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/emailTemplate/subscription.hbs -------------------------------------------------------------------------------- /server/location/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/location/categories.json -------------------------------------------------------------------------------- /server/location/comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/location/comment.json -------------------------------------------------------------------------------- /server/location/district.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/location/district.json -------------------------------------------------------------------------------- /server/location/foodImg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/location/foodImg.json -------------------------------------------------------------------------------- /server/location/plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/location/plan.json -------------------------------------------------------------------------------- /server/location/restImg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/location/restImg.json -------------------------------------------------------------------------------- /server/location/stores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/location/stores.json -------------------------------------------------------------------------------- /server/location/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/location/users.json -------------------------------------------------------------------------------- /server/middleware/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/middleware/middleware.js -------------------------------------------------------------------------------- /server/migrations/20191015025737-create-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025737-create-user.js -------------------------------------------------------------------------------- /server/migrations/20191015025745-create-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025745-create-comment.js -------------------------------------------------------------------------------- /server/migrations/20191015025800-create-restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025800-create-restaurant.js -------------------------------------------------------------------------------- /server/migrations/20191015025806-create-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025806-create-category.js -------------------------------------------------------------------------------- /server/migrations/20191015025815-create-meal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025815-create-meal.js -------------------------------------------------------------------------------- /server/migrations/20191015025820-create-order-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025820-create-order-item.js -------------------------------------------------------------------------------- /server/migrations/20191015025824-create-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025824-create-order.js -------------------------------------------------------------------------------- /server/migrations/20191015025829-create-like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025829-create-like.js -------------------------------------------------------------------------------- /server/migrations/20191015025839-create-subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025839-create-subscription.js -------------------------------------------------------------------------------- /server/migrations/20191015025850-create-payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/migrations/20191015025850-create-payment.js -------------------------------------------------------------------------------- /server/models/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/category.js -------------------------------------------------------------------------------- /server/models/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/comment.js -------------------------------------------------------------------------------- /server/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/index.js -------------------------------------------------------------------------------- /server/models/like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/like.js -------------------------------------------------------------------------------- /server/models/meal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/meal.js -------------------------------------------------------------------------------- /server/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/order.js -------------------------------------------------------------------------------- /server/models/orderitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/orderitem.js -------------------------------------------------------------------------------- /server/models/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/payment.js -------------------------------------------------------------------------------- /server/models/restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/restaurant.js -------------------------------------------------------------------------------- /server/models/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/subscription.js -------------------------------------------------------------------------------- /server/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/models/user.js -------------------------------------------------------------------------------- /server/routes/adminRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/routes/adminRoute.js -------------------------------------------------------------------------------- /server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/routes/index.js -------------------------------------------------------------------------------- /server/routes/locationRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/routes/locationRoute.js -------------------------------------------------------------------------------- /server/routes/mainRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/routes/mainRoute.js -------------------------------------------------------------------------------- /server/routes/orderRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/routes/orderRoute.js -------------------------------------------------------------------------------- /server/routes/ownerRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/routes/ownerRoute.js -------------------------------------------------------------------------------- /server/routes/restRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/routes/restRoute.js -------------------------------------------------------------------------------- /server/routes/userRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/routes/userRoute.js -------------------------------------------------------------------------------- /server/seeders/20191015083302-nextmeal-test-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/seeders/20191015083302-nextmeal-test-file.js -------------------------------------------------------------------------------- /server/test/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/check.png -------------------------------------------------------------------------------- /server/test/models/Category.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/Category.spec.js -------------------------------------------------------------------------------- /server/test/models/Comment.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/Comment.spec.js -------------------------------------------------------------------------------- /server/test/models/Like.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/Like.spec.js -------------------------------------------------------------------------------- /server/test/models/Meal.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/Meal.spec.js -------------------------------------------------------------------------------- /server/test/models/Order.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/Order.spec.js -------------------------------------------------------------------------------- /server/test/models/OrderItem.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/OrderItem.spec.js -------------------------------------------------------------------------------- /server/test/models/Payment.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/Payment.spec.js -------------------------------------------------------------------------------- /server/test/models/Restaurant.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/Restaurant.spec.js -------------------------------------------------------------------------------- /server/test/models/Subscription.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/Subscription.spec.js -------------------------------------------------------------------------------- /server/test/models/User.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/models/User.spec.js -------------------------------------------------------------------------------- /server/test/requests/admin/restaurant.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/requests/admin/restaurant.spec.js -------------------------------------------------------------------------------- /server/test/requests/admin/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/requests/admin/user.spec.js -------------------------------------------------------------------------------- /server/test/requests/owner/restaurant.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/requests/owner/restaurant.spec.js -------------------------------------------------------------------------------- /server/test/requests/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallpaes/nextmeal/HEAD/server/test/requests/user.spec.js --------------------------------------------------------------------------------