├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── API Design.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Model Design.md ├── README.md ├── client ├── .env ├── .env.template ├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── postcss.config.js ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── assets │ │ ├── avatars │ │ │ ├── 668412781664e859963a7068.135434950.jpeg │ │ │ ├── 66b4024cbaf1712da9855432.14.webp │ │ │ ├── ava.png │ │ │ ├── avatar-10.jpg │ │ │ ├── avatar-12.jpg │ │ │ ├── avatar-14.jpg │ │ │ ├── avatar-17.jpg │ │ │ ├── avatar.jpg │ │ │ └── default.jpg │ │ └── images │ │ │ ├── background_outrun.png │ │ │ ├── default.jpg │ │ │ └── logo.png │ ├── default.jpg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── index.html │ ├── intro.png │ ├── logo.jpg │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ ├── CalendarView │ │ │ ├── index.jsx │ │ │ └── util.js │ │ ├── Cards │ │ │ └── TitleCard.jsx │ │ ├── General │ │ │ ├── Avatar.jsx │ │ │ ├── Button.jsx │ │ │ ├── ErrorText.jsx │ │ │ ├── Input.jsx │ │ │ ├── InputText.jsx │ │ │ └── Logo.jsx │ │ ├── Input │ │ │ ├── BigInputText.js │ │ │ ├── Input.js │ │ │ ├── InputText.js │ │ │ ├── Inputdisabled.js │ │ │ ├── SearchBar.js │ │ │ ├── SelectBox.js │ │ │ ├── SelectBoxBig.js │ │ │ ├── SelectBoxSmall.js │ │ │ ├── StanSearchBar.js │ │ │ ├── TextAreaInput.js │ │ │ └── ToogleInput.js │ │ ├── Typography │ │ │ ├── ErrorText.jsx │ │ │ ├── HelperText.jsx │ │ │ ├── Subtitle.jsx │ │ │ └── Title.jsx │ │ ├── containers │ │ │ ├── Header.jsx │ │ │ ├── Layout.jsx │ │ │ ├── LeftSidebar.jsx │ │ │ ├── ModalLayout.jsx │ │ │ ├── PageContent.jsx │ │ │ ├── RightSidebar.jsx │ │ │ ├── SidebarSubmenu.jsx │ │ │ └── SuspenseContent.jsx │ │ └── features │ │ │ ├── charts │ │ │ ├── components │ │ │ │ ├── BarChart.jsx │ │ │ │ ├── DoughnutChart.jsx │ │ │ │ ├── LineChart.jsx │ │ │ │ ├── PieChart.jsx │ │ │ │ ├── ScatterChart.jsx │ │ │ │ └── StackBarChart.jsx │ │ │ └── index.jsx │ │ │ ├── common │ │ │ ├── components │ │ │ │ ├── ConfirmationModalBody.js │ │ │ │ └── NotificationBodyRightDrawer.js │ │ │ ├── headerSlice.js │ │ │ ├── modalSlice.js │ │ │ └── rightDrawerSlice.js │ │ │ ├── dashboard │ │ │ ├── components │ │ │ │ ├── AmountStats.js │ │ │ │ ├── ArticleCard.js │ │ │ │ ├── BarChart.js │ │ │ │ ├── DashboardStats.js │ │ │ │ ├── DashboardTopBar.js │ │ │ │ ├── DoughnutChart.js │ │ │ │ ├── LineChart.js │ │ │ │ ├── PageStats.js │ │ │ │ ├── Toolbar.js │ │ │ │ └── UserChannels.js │ │ │ └── index.js │ │ │ ├── integration │ │ │ └── index.js │ │ │ ├── leads │ │ │ ├── components │ │ │ │ └── AddLeadModalBody.js │ │ │ ├── index.js │ │ │ └── leadSlice.js │ │ │ ├── profile │ │ │ ├── components │ │ │ │ ├── ProfileInfo.jsx │ │ │ │ └── Repositories.js │ │ │ └── index.jsx │ │ │ ├── settings │ │ │ ├── changepassword │ │ │ │ └── index.js │ │ │ ├── profilesettings │ │ │ │ └── index.js │ │ │ └── team │ │ │ │ └── index.js │ │ │ ├── transactions │ │ │ └── index.js │ │ │ └── user │ │ │ ├── ForgotPassword.js │ │ │ ├── LandingIntro.js │ │ │ ├── Login.js │ │ │ └── components │ │ │ └── TemplatePointers.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── pages │ │ ├── Admin │ │ │ ├── Category │ │ │ │ ├── components │ │ │ │ │ ├── InputCategory.jsx │ │ │ │ │ └── TableCategory.jsx │ │ │ │ └── index.jsx │ │ │ └── UserManage │ │ │ │ ├── EditAccount │ │ │ │ ├── EditManage │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ │ ├── UserManagePanel │ │ │ │ ├── TopSideButtons │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ ├── Article │ │ │ ├── AllArticle.jsx │ │ │ ├── AnswerArticle.jsx │ │ │ ├── Draft.jsx │ │ │ ├── FavouriteArticle.jsx │ │ │ ├── MyArticle.jsx │ │ │ ├── NewArticle.jsx │ │ │ └── ShowArticle.jsx │ │ ├── ForgotPassword │ │ │ └── index.jsx │ │ ├── Settings │ │ │ ├── ChangePassword.jsx │ │ │ ├── ProfileSettings.jsx │ │ │ └── Team.jsx │ │ ├── Signin │ │ │ └── index.jsx │ │ ├── Signup │ │ │ └── index.jsx │ │ └── protected │ │ │ ├── 404.jsx │ │ │ ├── Blank.jsx │ │ │ ├── Charts.jsx │ │ │ ├── Dashboard.jsx │ │ │ ├── Integration.jsx │ │ │ ├── Leads.jsx │ │ │ ├── Transactions.jsx │ │ │ └── Welcome.jsx │ ├── redux │ │ ├── adminSlice.js │ │ ├── articleSlice.js │ │ ├── auth.js │ │ ├── authSlice.js │ │ ├── init.js │ │ └── store.js │ ├── reportWebVitals.js │ ├── routes │ │ ├── index.js │ │ └── sidebar.js │ ├── setupTests.js │ └── utils │ │ ├── dummyData.js │ │ ├── globalConstantUtil.js │ │ └── requestServer.js └── tailwind.config.js ├── package.json └── server ├── .env ├── .eslintrc.json ├── .gitignore ├── Procfile ├── README.md ├── app.js ├── package-lock.json ├── package.json ├── public └── favicon.ico ├── socket ├── constants.js ├── events │ ├── authorizationEvents.js │ ├── chatEvents.js │ ├── loggedusersEvent.js │ └── notificationEvents.js ├── global.js ├── index.js ├── init │ ├── authorizationInit.js │ ├── chatInit.js │ ├── loggedusersInit.js │ └── notificationInit.js └── utils │ ├── authorizationUtils.js │ ├── chatUtils.js │ ├── index.js │ ├── loggedusersUtils.js │ └── notificationUtils.js ├── socketApp.js └── src ├── configs ├── config.js ├── errorHandler.js ├── passport.js └── socket.js ├── controllers ├── adminControllers │ ├── categoryController.js │ └── userController.js ├── articleController.js └── authController.js ├── db └── connect.js ├── middleware └── authorization.js ├── models ├── adminModel │ └── categoryModel.js ├── articleModel.js └── userModel.js └── routes ├── adminRoutes ├── categoryRoutes.js ├── index.js └── userRoutes.js ├── articleRoutes.js ├── authRoutes.js └── index.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/.gitignore -------------------------------------------------------------------------------- /API Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/API Design.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/LICENSE -------------------------------------------------------------------------------- /Model Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/Model Design.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/README.md -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_BASE_URL=http://localhost:4000 2 | PORT = 3001 3 | -------------------------------------------------------------------------------- /client/.env.template: -------------------------------------------------------------------------------- 1 | REACT_APP_BASE_URL=https://reqres.in/ 2 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/LICENSE.md -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /client/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /client/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/apple-touch-icon.png -------------------------------------------------------------------------------- /client/public/assets/avatars/668412781664e859963a7068.135434950.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/668412781664e859963a7068.135434950.jpeg -------------------------------------------------------------------------------- /client/public/assets/avatars/66b4024cbaf1712da9855432.14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/66b4024cbaf1712da9855432.14.webp -------------------------------------------------------------------------------- /client/public/assets/avatars/ava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/ava.png -------------------------------------------------------------------------------- /client/public/assets/avatars/avatar-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/avatar-10.jpg -------------------------------------------------------------------------------- /client/public/assets/avatars/avatar-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/avatar-12.jpg -------------------------------------------------------------------------------- /client/public/assets/avatars/avatar-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/avatar-14.jpg -------------------------------------------------------------------------------- /client/public/assets/avatars/avatar-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/avatar-17.jpg -------------------------------------------------------------------------------- /client/public/assets/avatars/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/avatar.jpg -------------------------------------------------------------------------------- /client/public/assets/avatars/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/avatars/default.jpg -------------------------------------------------------------------------------- /client/public/assets/images/background_outrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/images/background_outrun.png -------------------------------------------------------------------------------- /client/public/assets/images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/images/default.jpg -------------------------------------------------------------------------------- /client/public/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/assets/images/logo.png -------------------------------------------------------------------------------- /client/public/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/default.jpg -------------------------------------------------------------------------------- /client/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/favicon-16x16.png -------------------------------------------------------------------------------- /client/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/favicon-32x32.png -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/intro.png -------------------------------------------------------------------------------- /client/public/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/logo.jpg -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/components/CalendarView/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/CalendarView/index.jsx -------------------------------------------------------------------------------- /client/src/components/CalendarView/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/CalendarView/util.js -------------------------------------------------------------------------------- /client/src/components/Cards/TitleCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Cards/TitleCard.jsx -------------------------------------------------------------------------------- /client/src/components/General/Avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/General/Avatar.jsx -------------------------------------------------------------------------------- /client/src/components/General/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/General/Button.jsx -------------------------------------------------------------------------------- /client/src/components/General/ErrorText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/General/ErrorText.jsx -------------------------------------------------------------------------------- /client/src/components/General/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/General/Input.jsx -------------------------------------------------------------------------------- /client/src/components/General/InputText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/General/InputText.jsx -------------------------------------------------------------------------------- /client/src/components/General/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/General/Logo.jsx -------------------------------------------------------------------------------- /client/src/components/Input/BigInputText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/BigInputText.js -------------------------------------------------------------------------------- /client/src/components/Input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/Input.js -------------------------------------------------------------------------------- /client/src/components/Input/InputText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/InputText.js -------------------------------------------------------------------------------- /client/src/components/Input/Inputdisabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/Inputdisabled.js -------------------------------------------------------------------------------- /client/src/components/Input/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/SearchBar.js -------------------------------------------------------------------------------- /client/src/components/Input/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/SelectBox.js -------------------------------------------------------------------------------- /client/src/components/Input/SelectBoxBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/SelectBoxBig.js -------------------------------------------------------------------------------- /client/src/components/Input/SelectBoxSmall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/SelectBoxSmall.js -------------------------------------------------------------------------------- /client/src/components/Input/StanSearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/StanSearchBar.js -------------------------------------------------------------------------------- /client/src/components/Input/TextAreaInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/TextAreaInput.js -------------------------------------------------------------------------------- /client/src/components/Input/ToogleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Input/ToogleInput.js -------------------------------------------------------------------------------- /client/src/components/Typography/ErrorText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Typography/ErrorText.jsx -------------------------------------------------------------------------------- /client/src/components/Typography/HelperText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Typography/HelperText.jsx -------------------------------------------------------------------------------- /client/src/components/Typography/Subtitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Typography/Subtitle.jsx -------------------------------------------------------------------------------- /client/src/components/Typography/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/Typography/Title.jsx -------------------------------------------------------------------------------- /client/src/components/containers/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/containers/Header.jsx -------------------------------------------------------------------------------- /client/src/components/containers/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/containers/Layout.jsx -------------------------------------------------------------------------------- /client/src/components/containers/LeftSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/containers/LeftSidebar.jsx -------------------------------------------------------------------------------- /client/src/components/containers/ModalLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/containers/ModalLayout.jsx -------------------------------------------------------------------------------- /client/src/components/containers/PageContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/containers/PageContent.jsx -------------------------------------------------------------------------------- /client/src/components/containers/RightSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/containers/RightSidebar.jsx -------------------------------------------------------------------------------- /client/src/components/containers/SidebarSubmenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/containers/SidebarSubmenu.jsx -------------------------------------------------------------------------------- /client/src/components/containers/SuspenseContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/containers/SuspenseContent.jsx -------------------------------------------------------------------------------- /client/src/components/features/charts/components/BarChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/charts/components/BarChart.jsx -------------------------------------------------------------------------------- /client/src/components/features/charts/components/DoughnutChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/charts/components/DoughnutChart.jsx -------------------------------------------------------------------------------- /client/src/components/features/charts/components/LineChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/charts/components/LineChart.jsx -------------------------------------------------------------------------------- /client/src/components/features/charts/components/PieChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/charts/components/PieChart.jsx -------------------------------------------------------------------------------- /client/src/components/features/charts/components/ScatterChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/charts/components/ScatterChart.jsx -------------------------------------------------------------------------------- /client/src/components/features/charts/components/StackBarChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/charts/components/StackBarChart.jsx -------------------------------------------------------------------------------- /client/src/components/features/charts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/charts/index.jsx -------------------------------------------------------------------------------- /client/src/components/features/common/components/ConfirmationModalBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/common/components/ConfirmationModalBody.js -------------------------------------------------------------------------------- /client/src/components/features/common/components/NotificationBodyRightDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/common/components/NotificationBodyRightDrawer.js -------------------------------------------------------------------------------- /client/src/components/features/common/headerSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/common/headerSlice.js -------------------------------------------------------------------------------- /client/src/components/features/common/modalSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/common/modalSlice.js -------------------------------------------------------------------------------- /client/src/components/features/common/rightDrawerSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/common/rightDrawerSlice.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/AmountStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/AmountStats.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/ArticleCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/ArticleCard.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/BarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/BarChart.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/DashboardStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/DashboardStats.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/DashboardTopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/DashboardTopBar.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/DoughnutChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/DoughnutChart.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/LineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/LineChart.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/PageStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/PageStats.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/Toolbar.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/components/UserChannels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/components/UserChannels.js -------------------------------------------------------------------------------- /client/src/components/features/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/dashboard/index.js -------------------------------------------------------------------------------- /client/src/components/features/integration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/integration/index.js -------------------------------------------------------------------------------- /client/src/components/features/leads/components/AddLeadModalBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/leads/components/AddLeadModalBody.js -------------------------------------------------------------------------------- /client/src/components/features/leads/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/leads/index.js -------------------------------------------------------------------------------- /client/src/components/features/leads/leadSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/leads/leadSlice.js -------------------------------------------------------------------------------- /client/src/components/features/profile/components/ProfileInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/profile/components/ProfileInfo.jsx -------------------------------------------------------------------------------- /client/src/components/features/profile/components/Repositories.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/components/features/profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/profile/index.jsx -------------------------------------------------------------------------------- /client/src/components/features/settings/changepassword/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/settings/changepassword/index.js -------------------------------------------------------------------------------- /client/src/components/features/settings/profilesettings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/settings/profilesettings/index.js -------------------------------------------------------------------------------- /client/src/components/features/settings/team/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/settings/team/index.js -------------------------------------------------------------------------------- /client/src/components/features/transactions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/transactions/index.js -------------------------------------------------------------------------------- /client/src/components/features/user/ForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/user/ForgotPassword.js -------------------------------------------------------------------------------- /client/src/components/features/user/LandingIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/user/LandingIntro.js -------------------------------------------------------------------------------- /client/src/components/features/user/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/user/Login.js -------------------------------------------------------------------------------- /client/src/components/features/user/components/TemplatePointers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/components/features/user/components/TemplatePointers.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/pages/Admin/Category/components/InputCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Admin/Category/components/InputCategory.jsx -------------------------------------------------------------------------------- /client/src/pages/Admin/Category/components/TableCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Admin/Category/components/TableCategory.jsx -------------------------------------------------------------------------------- /client/src/pages/Admin/Category/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Admin/Category/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Admin/UserManage/EditAccount/EditManage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Admin/UserManage/EditAccount/EditManage/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Admin/UserManage/EditAccount/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Admin/UserManage/EditAccount/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Admin/UserManage/UserManagePanel/TopSideButtons/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Admin/UserManage/UserManagePanel/TopSideButtons/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Admin/UserManage/UserManagePanel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Admin/UserManage/UserManagePanel/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Admin/UserManage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Admin/UserManage/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Article/AllArticle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Article/AllArticle.jsx -------------------------------------------------------------------------------- /client/src/pages/Article/AnswerArticle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Article/AnswerArticle.jsx -------------------------------------------------------------------------------- /client/src/pages/Article/Draft.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Article/Draft.jsx -------------------------------------------------------------------------------- /client/src/pages/Article/FavouriteArticle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Article/FavouriteArticle.jsx -------------------------------------------------------------------------------- /client/src/pages/Article/MyArticle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Article/MyArticle.jsx -------------------------------------------------------------------------------- /client/src/pages/Article/NewArticle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Article/NewArticle.jsx -------------------------------------------------------------------------------- /client/src/pages/Article/ShowArticle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Article/ShowArticle.jsx -------------------------------------------------------------------------------- /client/src/pages/ForgotPassword/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/ForgotPassword/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Settings/ChangePassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Settings/ChangePassword.jsx -------------------------------------------------------------------------------- /client/src/pages/Settings/ProfileSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Settings/ProfileSettings.jsx -------------------------------------------------------------------------------- /client/src/pages/Settings/Team.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Settings/Team.jsx -------------------------------------------------------------------------------- /client/src/pages/Signin/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Signin/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Signup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/Signup/index.jsx -------------------------------------------------------------------------------- /client/src/pages/protected/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/protected/404.jsx -------------------------------------------------------------------------------- /client/src/pages/protected/Blank.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/protected/Blank.jsx -------------------------------------------------------------------------------- /client/src/pages/protected/Charts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/protected/Charts.jsx -------------------------------------------------------------------------------- /client/src/pages/protected/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/protected/Dashboard.jsx -------------------------------------------------------------------------------- /client/src/pages/protected/Integration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/protected/Integration.jsx -------------------------------------------------------------------------------- /client/src/pages/protected/Leads.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/protected/Leads.jsx -------------------------------------------------------------------------------- /client/src/pages/protected/Transactions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/protected/Transactions.jsx -------------------------------------------------------------------------------- /client/src/pages/protected/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/pages/protected/Welcome.jsx -------------------------------------------------------------------------------- /client/src/redux/adminSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/redux/adminSlice.js -------------------------------------------------------------------------------- /client/src/redux/articleSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/redux/articleSlice.js -------------------------------------------------------------------------------- /client/src/redux/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/redux/auth.js -------------------------------------------------------------------------------- /client/src/redux/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/redux/authSlice.js -------------------------------------------------------------------------------- /client/src/redux/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/redux/init.js -------------------------------------------------------------------------------- /client/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/redux/store.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/routes/index.js -------------------------------------------------------------------------------- /client/src/routes/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/routes/sidebar.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/src/utils/dummyData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/utils/dummyData.js -------------------------------------------------------------------------------- /client/src/utils/globalConstantUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/utils/globalConstantUtil.js -------------------------------------------------------------------------------- /client/src/utils/requestServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/src/utils/requestServer.js -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/package.json -------------------------------------------------------------------------------- /server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/.env -------------------------------------------------------------------------------- /server/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/.eslintrc.json -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/Procfile: -------------------------------------------------------------------------------- 1 | web: NODE_ENV=production node app.js -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/README.md -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/app.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/package.json -------------------------------------------------------------------------------- /server/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/public/favicon.ico -------------------------------------------------------------------------------- /server/socket/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/constants.js -------------------------------------------------------------------------------- /server/socket/events/authorizationEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/events/authorizationEvents.js -------------------------------------------------------------------------------- /server/socket/events/chatEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/events/chatEvents.js -------------------------------------------------------------------------------- /server/socket/events/loggedusersEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/events/loggedusersEvent.js -------------------------------------------------------------------------------- /server/socket/events/notificationEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/events/notificationEvents.js -------------------------------------------------------------------------------- /server/socket/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/global.js -------------------------------------------------------------------------------- /server/socket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/index.js -------------------------------------------------------------------------------- /server/socket/init/authorizationInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/init/authorizationInit.js -------------------------------------------------------------------------------- /server/socket/init/chatInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/init/chatInit.js -------------------------------------------------------------------------------- /server/socket/init/loggedusersInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/init/loggedusersInit.js -------------------------------------------------------------------------------- /server/socket/init/notificationInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/init/notificationInit.js -------------------------------------------------------------------------------- /server/socket/utils/authorizationUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/utils/authorizationUtils.js -------------------------------------------------------------------------------- /server/socket/utils/chatUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/utils/chatUtils.js -------------------------------------------------------------------------------- /server/socket/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/utils/index.js -------------------------------------------------------------------------------- /server/socket/utils/loggedusersUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/utils/loggedusersUtils.js -------------------------------------------------------------------------------- /server/socket/utils/notificationUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socket/utils/notificationUtils.js -------------------------------------------------------------------------------- /server/socketApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/socketApp.js -------------------------------------------------------------------------------- /server/src/configs/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/configs/config.js -------------------------------------------------------------------------------- /server/src/configs/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/configs/errorHandler.js -------------------------------------------------------------------------------- /server/src/configs/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/configs/passport.js -------------------------------------------------------------------------------- /server/src/configs/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/configs/socket.js -------------------------------------------------------------------------------- /server/src/controllers/adminControllers/categoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/controllers/adminControllers/categoryController.js -------------------------------------------------------------------------------- /server/src/controllers/adminControllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/controllers/adminControllers/userController.js -------------------------------------------------------------------------------- /server/src/controllers/articleController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/controllers/articleController.js -------------------------------------------------------------------------------- /server/src/controllers/authController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/controllers/authController.js -------------------------------------------------------------------------------- /server/src/db/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/db/connect.js -------------------------------------------------------------------------------- /server/src/middleware/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/middleware/authorization.js -------------------------------------------------------------------------------- /server/src/models/adminModel/categoryModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/models/adminModel/categoryModel.js -------------------------------------------------------------------------------- /server/src/models/articleModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/models/articleModel.js -------------------------------------------------------------------------------- /server/src/models/userModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/models/userModel.js -------------------------------------------------------------------------------- /server/src/routes/adminRoutes/categoryRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/routes/adminRoutes/categoryRoutes.js -------------------------------------------------------------------------------- /server/src/routes/adminRoutes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/routes/adminRoutes/index.js -------------------------------------------------------------------------------- /server/src/routes/adminRoutes/userRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/routes/adminRoutes/userRoutes.js -------------------------------------------------------------------------------- /server/src/routes/articleRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/routes/articleRoutes.js -------------------------------------------------------------------------------- /server/src/routes/authRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/routes/authRoutes.js -------------------------------------------------------------------------------- /server/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshinydev/finalGoal/HEAD/server/src/routes/index.js --------------------------------------------------------------------------------