├── .gitignore ├── README.md ├── out └── src │ └── umlDiagram │ └── componentsUml │ └── componentsUml.png ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.test.js ├── components ├── LeftMenu │ ├── EmployerMenu.jsx │ ├── JobSeekerMenu.jsx │ ├── LeftMenu.jsx │ └── SystemPersonnelMenu.jsx ├── mainLayout │ └── MainLayout.jsx ├── navi │ ├── BaseNavi.jsx │ ├── EmployerNavi.jsx │ ├── JobSeekerNavi.jsx │ ├── Login.jsx │ ├── Logout.jsx │ ├── Navi.jsx │ ├── PersonnelNavi.jsx │ └── register │ │ ├── EmployerRegister.jsx │ │ ├── JobSeekerRegister.jsx │ │ └── SystemPersonnelRegister.jsx ├── pages │ ├── cv │ │ ├── CvAdd.jsx │ │ ├── CvList.jsx │ │ └── Cvs.jsx │ ├── cvEducationInformation │ │ ├── CvEducationInformationAdd.jsx │ │ ├── CvEducationInformationList.jsx │ │ ├── CvEducationInformationListUpdate.jsx │ │ ├── UniversityDepartmentList.jsx │ │ └── UniversityList.jsx │ ├── cvForeignLanguages │ │ ├── CvForeignLanguageAdd.jsx │ │ ├── CvForeignLanguageList.jsx │ │ ├── CvForeignLanguageUpdate.jsx │ │ └── ForeignLanguageList.jsx │ ├── cvObjective │ │ ├── CvObjective.jsx │ │ └── CvObjectiveUpdate.jsx │ ├── cvPhotos │ │ └── CvPhotos.jsx │ ├── cvSocialMedia │ │ ├── CvSocialMediaAdd.jsx │ │ ├── CvSocialMediaList.jsx │ │ ├── CvSocialMediaUpdate.jsx │ │ └── SocialMediaList.jsx │ ├── cvTechnologies │ │ ├── CvTechnologyAdd.jsx │ │ ├── CvTechnologyList.jsx │ │ ├── CvTechnologyUpdate.jsx │ │ ├── TechnologyAdd.jsx │ │ └── TechnologyList.jsx │ ├── cvWorkExperiences │ │ ├── CvWorkExperienceAdd.jsx │ │ ├── CvWorkExperienceList.jsx │ │ └── CvWorkExperienceUpdate.jsx │ ├── employers │ │ ├── EmployerList.jsx │ │ ├── EmployerProfile.jsx │ │ └── EmployerProfileUpdate.jsx │ ├── jobAdvertisement │ │ ├── ActiveJobAdvertisementListForEmployer.jsx │ │ ├── AllJobAdvertisementList.jsx │ │ ├── CityList.jsx │ │ ├── FavoriteJobAdvertisementForJobSeeker.jsx │ │ ├── JobAdvertisementAdd.jsx │ │ ├── JobAdvertisementClose.jsx │ │ ├── JobAdvertisementDetailForEmployer.jsx │ │ ├── JobAdvertisementDetails.jsx │ │ ├── JobAdvertisementDetailsForAll.jsx │ │ ├── JobAdvertisementDetailsForPersonnel.jsx │ │ ├── JobAdvertisementList.jsx │ │ ├── JobAdvertisementListForEmployer.jsx │ │ ├── JobAdvertisementListForJobSeeker.jsx │ │ └── PassiveJobAdvertisementListForEmployer.jsx │ ├── jobPositions │ │ └── JobPositionList.jsx │ ├── jobSeekers │ │ ├── JobSeekerDetail.jsx │ │ └── JobSeekerList.jsx │ ├── login │ │ └── Login.jsx │ ├── mainPage │ │ └── MainPage.jsx │ ├── password │ │ └── PasswordUpdate.jsx │ ├── profile │ │ └── BaseProfilePage.jsx │ └── systemPersonnels │ │ ├── ApprovedEmployerList.jsx │ │ ├── ApprovedJobAdvertisementList.jsx │ │ ├── SystemPersonnelProfile.jsx │ │ ├── SystemPersonnelProfileUpdate.jsx │ │ ├── UnApprovedEmployerList.jsx │ │ ├── UnApprovedJobAdvertisementList.jsx │ │ ├── UpdatedEmployerList.jsx │ │ └── UpdatedEmployerListApproval.jsx ├── root │ ├── App.css │ ├── App.js │ └── Dashboard.jsx ├── services │ ├── CityService.jsx │ ├── CvForeignLanguageService.jsx │ ├── CvService.jsx │ ├── CvSocialMediaService.jsx │ ├── CvTechnologyService.jsx │ ├── EducationInformationService.jsx │ ├── EmailService.jsx │ ├── EmployerService.jsx │ ├── FavoriteService.jsx │ ├── ForeignLanguageService.jsx │ ├── JobAdvertisementService.jsx │ ├── JobPositionService.jsx │ ├── JobSeekerService.jsx │ ├── LanguageLevelService.jsx │ ├── PersonnelService.jsx │ ├── PhotoService.jsx │ ├── SocialMediaService.jsx │ ├── TechnologyService.jsx │ ├── UniversityDepartmentService.jsx │ ├── UniversityService.jsx │ ├── UserService.jsx │ ├── WorkExperienceService.jsx │ ├── WorkTimeTypeService.jsx │ └── WorkTypeService.jsx └── toolbox │ ├── JobAdvertisementDetailsSegment.jsx │ ├── JobAdvertisementListSegment.jsx │ ├── Timer.jsx │ ├── ZYBaseGrid.jsx │ ├── ZYFooter.jsx │ ├── ZYFormLabel.jsx │ ├── ZYGreyButton.jsx │ ├── ZYMainPageButton.jsx │ ├── ZYRedButton.jsx │ ├── ZYTextInput.jsx │ └── ZYTitle.jsx ├── css ├── CvCard.css ├── CvList.css ├── JobAdvertisement.css ├── JobAdvertisementAdd.css ├── JobAdvertisementList.css ├── JobSeekerCss.css ├── LeftMenu.css ├── Login.css ├── MainLayout.css └── Navi.css ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js ├── setupTests.js └── store ├── actions ├── CvActions.js ├── CvEducationInformationActions.js ├── CvForeignLanguageActions.js ├── CvSocialMediaActions.js ├── CvSocialMediaStateActions.js ├── CvTechnologyActions.js ├── CvTechnologyStateActions.js ├── CvWorkExperienceActions.js ├── EducationInformationActions.js ├── EmployerActions.js ├── JobSeekerActions.js ├── PhotoActions.js ├── SystemPersonnelActions.js ├── TimerStateActions.js ├── UserActions.js └── WorkExperienceActions.js ├── configureStore.js ├── initialValues ├── Cv.js ├── CvForeignLanguage.js ├── CvSocialMedia.js ├── CvTechnology.js ├── CvWorkExperienceState.js ├── EducationInformation.js ├── Employer.js ├── JobSeeker.js ├── ProfilePhoto.js ├── SystemPersonnel.js ├── Timer.js ├── User.js └── WorkExperience.js ├── reducers ├── CvEducationInformationStateReducer.js ├── CvForeignLanguageReducer.js ├── CvForeignLanguageStateReducer.js ├── CvReducer.js ├── CvSocialMediaReducer.js ├── CvSocialMediaStateReducer.js ├── CvTechnologyReducer.js ├── CvTechnologyStateReducer.js ├── CvWorkExperienceStateReducer.js ├── EducationInformationReducer.js ├── EmployerReducer.js ├── JobSeekerReducer.js ├── PhotoReducer.js ├── SystemPersonnelReducer.js ├── TimerStateReducer.js ├── UserReducer.js └── WorkExperienceReducer.js └── rootReducer.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/README.md -------------------------------------------------------------------------------- /out/src/umlDiagram/componentsUml/componentsUml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/out/src/umlDiagram/componentsUml/componentsUml.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/LeftMenu/EmployerMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/LeftMenu/EmployerMenu.jsx -------------------------------------------------------------------------------- /src/components/LeftMenu/JobSeekerMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/LeftMenu/JobSeekerMenu.jsx -------------------------------------------------------------------------------- /src/components/LeftMenu/LeftMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/LeftMenu/LeftMenu.jsx -------------------------------------------------------------------------------- /src/components/LeftMenu/SystemPersonnelMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/LeftMenu/SystemPersonnelMenu.jsx -------------------------------------------------------------------------------- /src/components/mainLayout/MainLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/mainLayout/MainLayout.jsx -------------------------------------------------------------------------------- /src/components/navi/BaseNavi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/BaseNavi.jsx -------------------------------------------------------------------------------- /src/components/navi/EmployerNavi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/EmployerNavi.jsx -------------------------------------------------------------------------------- /src/components/navi/JobSeekerNavi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/JobSeekerNavi.jsx -------------------------------------------------------------------------------- /src/components/navi/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/Login.jsx -------------------------------------------------------------------------------- /src/components/navi/Logout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/Logout.jsx -------------------------------------------------------------------------------- /src/components/navi/Navi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/Navi.jsx -------------------------------------------------------------------------------- /src/components/navi/PersonnelNavi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/PersonnelNavi.jsx -------------------------------------------------------------------------------- /src/components/navi/register/EmployerRegister.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/register/EmployerRegister.jsx -------------------------------------------------------------------------------- /src/components/navi/register/JobSeekerRegister.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/navi/register/JobSeekerRegister.jsx -------------------------------------------------------------------------------- /src/components/navi/register/SystemPersonnelRegister.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/pages/cv/CvAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cv/CvAdd.jsx -------------------------------------------------------------------------------- /src/components/pages/cv/CvList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cv/CvList.jsx -------------------------------------------------------------------------------- /src/components/pages/cv/Cvs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cv/Cvs.jsx -------------------------------------------------------------------------------- /src/components/pages/cvEducationInformation/CvEducationInformationAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvEducationInformation/CvEducationInformationAdd.jsx -------------------------------------------------------------------------------- /src/components/pages/cvEducationInformation/CvEducationInformationList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvEducationInformation/CvEducationInformationList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvEducationInformation/CvEducationInformationListUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvEducationInformation/CvEducationInformationListUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/cvEducationInformation/UniversityDepartmentList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvEducationInformation/UniversityDepartmentList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvEducationInformation/UniversityList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvEducationInformation/UniversityList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvForeignLanguages/CvForeignLanguageAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvForeignLanguages/CvForeignLanguageAdd.jsx -------------------------------------------------------------------------------- /src/components/pages/cvForeignLanguages/CvForeignLanguageList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvForeignLanguages/CvForeignLanguageList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvForeignLanguages/CvForeignLanguageUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvForeignLanguages/CvForeignLanguageUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/cvForeignLanguages/ForeignLanguageList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvForeignLanguages/ForeignLanguageList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvObjective/CvObjective.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvObjective/CvObjective.jsx -------------------------------------------------------------------------------- /src/components/pages/cvObjective/CvObjectiveUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvObjective/CvObjectiveUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/cvPhotos/CvPhotos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvPhotos/CvPhotos.jsx -------------------------------------------------------------------------------- /src/components/pages/cvSocialMedia/CvSocialMediaAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvSocialMedia/CvSocialMediaAdd.jsx -------------------------------------------------------------------------------- /src/components/pages/cvSocialMedia/CvSocialMediaList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvSocialMedia/CvSocialMediaList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvSocialMedia/CvSocialMediaUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvSocialMedia/CvSocialMediaUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/cvSocialMedia/SocialMediaList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvSocialMedia/SocialMediaList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvTechnologies/CvTechnologyAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvTechnologies/CvTechnologyAdd.jsx -------------------------------------------------------------------------------- /src/components/pages/cvTechnologies/CvTechnologyList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvTechnologies/CvTechnologyList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvTechnologies/CvTechnologyUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvTechnologies/CvTechnologyUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/cvTechnologies/TechnologyAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvTechnologies/TechnologyAdd.jsx -------------------------------------------------------------------------------- /src/components/pages/cvTechnologies/TechnologyList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvTechnologies/TechnologyList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvWorkExperiences/CvWorkExperienceAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvWorkExperiences/CvWorkExperienceAdd.jsx -------------------------------------------------------------------------------- /src/components/pages/cvWorkExperiences/CvWorkExperienceList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvWorkExperiences/CvWorkExperienceList.jsx -------------------------------------------------------------------------------- /src/components/pages/cvWorkExperiences/CvWorkExperienceUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/cvWorkExperiences/CvWorkExperienceUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/employers/EmployerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/employers/EmployerList.jsx -------------------------------------------------------------------------------- /src/components/pages/employers/EmployerProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/employers/EmployerProfile.jsx -------------------------------------------------------------------------------- /src/components/pages/employers/EmployerProfileUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/employers/EmployerProfileUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/ActiveJobAdvertisementListForEmployer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/ActiveJobAdvertisementListForEmployer.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/AllJobAdvertisementList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/AllJobAdvertisementList.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/CityList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/CityList.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/FavoriteJobAdvertisementForJobSeeker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/FavoriteJobAdvertisementForJobSeeker.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementAdd.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementClose.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementClose.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementDetailForEmployer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementDetailForEmployer.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementDetails.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementDetailsForAll.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementDetailsForAll.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementDetailsForPersonnel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementDetailsForPersonnel.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementList.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementListForEmployer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementListForEmployer.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/JobAdvertisementListForJobSeeker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/JobAdvertisementListForJobSeeker.jsx -------------------------------------------------------------------------------- /src/components/pages/jobAdvertisement/PassiveJobAdvertisementListForEmployer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobAdvertisement/PassiveJobAdvertisementListForEmployer.jsx -------------------------------------------------------------------------------- /src/components/pages/jobPositions/JobPositionList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobPositions/JobPositionList.jsx -------------------------------------------------------------------------------- /src/components/pages/jobSeekers/JobSeekerDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobSeekers/JobSeekerDetail.jsx -------------------------------------------------------------------------------- /src/components/pages/jobSeekers/JobSeekerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/jobSeekers/JobSeekerList.jsx -------------------------------------------------------------------------------- /src/components/pages/login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/login/Login.jsx -------------------------------------------------------------------------------- /src/components/pages/mainPage/MainPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/mainPage/MainPage.jsx -------------------------------------------------------------------------------- /src/components/pages/password/PasswordUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/password/PasswordUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/profile/BaseProfilePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/profile/BaseProfilePage.jsx -------------------------------------------------------------------------------- /src/components/pages/systemPersonnels/ApprovedEmployerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/systemPersonnels/ApprovedEmployerList.jsx -------------------------------------------------------------------------------- /src/components/pages/systemPersonnels/ApprovedJobAdvertisementList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/systemPersonnels/ApprovedJobAdvertisementList.jsx -------------------------------------------------------------------------------- /src/components/pages/systemPersonnels/SystemPersonnelProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/systemPersonnels/SystemPersonnelProfile.jsx -------------------------------------------------------------------------------- /src/components/pages/systemPersonnels/SystemPersonnelProfileUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/systemPersonnels/SystemPersonnelProfileUpdate.jsx -------------------------------------------------------------------------------- /src/components/pages/systemPersonnels/UnApprovedEmployerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/systemPersonnels/UnApprovedEmployerList.jsx -------------------------------------------------------------------------------- /src/components/pages/systemPersonnels/UnApprovedJobAdvertisementList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/systemPersonnels/UnApprovedJobAdvertisementList.jsx -------------------------------------------------------------------------------- /src/components/pages/systemPersonnels/UpdatedEmployerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/systemPersonnels/UpdatedEmployerList.jsx -------------------------------------------------------------------------------- /src/components/pages/systemPersonnels/UpdatedEmployerListApproval.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/pages/systemPersonnels/UpdatedEmployerListApproval.jsx -------------------------------------------------------------------------------- /src/components/root/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/root/App.css -------------------------------------------------------------------------------- /src/components/root/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/root/App.js -------------------------------------------------------------------------------- /src/components/root/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/root/Dashboard.jsx -------------------------------------------------------------------------------- /src/components/services/CityService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/CityService.jsx -------------------------------------------------------------------------------- /src/components/services/CvForeignLanguageService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/CvForeignLanguageService.jsx -------------------------------------------------------------------------------- /src/components/services/CvService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/CvService.jsx -------------------------------------------------------------------------------- /src/components/services/CvSocialMediaService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/CvSocialMediaService.jsx -------------------------------------------------------------------------------- /src/components/services/CvTechnologyService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/CvTechnologyService.jsx -------------------------------------------------------------------------------- /src/components/services/EducationInformationService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/EducationInformationService.jsx -------------------------------------------------------------------------------- /src/components/services/EmailService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/EmailService.jsx -------------------------------------------------------------------------------- /src/components/services/EmployerService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/EmployerService.jsx -------------------------------------------------------------------------------- /src/components/services/FavoriteService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/FavoriteService.jsx -------------------------------------------------------------------------------- /src/components/services/ForeignLanguageService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/ForeignLanguageService.jsx -------------------------------------------------------------------------------- /src/components/services/JobAdvertisementService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/JobAdvertisementService.jsx -------------------------------------------------------------------------------- /src/components/services/JobPositionService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/JobPositionService.jsx -------------------------------------------------------------------------------- /src/components/services/JobSeekerService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/JobSeekerService.jsx -------------------------------------------------------------------------------- /src/components/services/LanguageLevelService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/LanguageLevelService.jsx -------------------------------------------------------------------------------- /src/components/services/PersonnelService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/PersonnelService.jsx -------------------------------------------------------------------------------- /src/components/services/PhotoService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/PhotoService.jsx -------------------------------------------------------------------------------- /src/components/services/SocialMediaService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/SocialMediaService.jsx -------------------------------------------------------------------------------- /src/components/services/TechnologyService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/TechnologyService.jsx -------------------------------------------------------------------------------- /src/components/services/UniversityDepartmentService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/UniversityDepartmentService.jsx -------------------------------------------------------------------------------- /src/components/services/UniversityService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/UniversityService.jsx -------------------------------------------------------------------------------- /src/components/services/UserService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/UserService.jsx -------------------------------------------------------------------------------- /src/components/services/WorkExperienceService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/WorkExperienceService.jsx -------------------------------------------------------------------------------- /src/components/services/WorkTimeTypeService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/WorkTimeTypeService.jsx -------------------------------------------------------------------------------- /src/components/services/WorkTypeService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/services/WorkTypeService.jsx -------------------------------------------------------------------------------- /src/components/toolbox/JobAdvertisementDetailsSegment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/JobAdvertisementDetailsSegment.jsx -------------------------------------------------------------------------------- /src/components/toolbox/JobAdvertisementListSegment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/JobAdvertisementListSegment.jsx -------------------------------------------------------------------------------- /src/components/toolbox/Timer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/Timer.jsx -------------------------------------------------------------------------------- /src/components/toolbox/ZYBaseGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/ZYBaseGrid.jsx -------------------------------------------------------------------------------- /src/components/toolbox/ZYFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/ZYFooter.jsx -------------------------------------------------------------------------------- /src/components/toolbox/ZYFormLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/ZYFormLabel.jsx -------------------------------------------------------------------------------- /src/components/toolbox/ZYGreyButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/ZYGreyButton.jsx -------------------------------------------------------------------------------- /src/components/toolbox/ZYMainPageButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/ZYMainPageButton.jsx -------------------------------------------------------------------------------- /src/components/toolbox/ZYRedButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/ZYRedButton.jsx -------------------------------------------------------------------------------- /src/components/toolbox/ZYTextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/ZYTextInput.jsx -------------------------------------------------------------------------------- /src/components/toolbox/ZYTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/components/toolbox/ZYTitle.jsx -------------------------------------------------------------------------------- /src/css/CvCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/CvCard.css -------------------------------------------------------------------------------- /src/css/CvList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/CvList.css -------------------------------------------------------------------------------- /src/css/JobAdvertisement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/JobAdvertisement.css -------------------------------------------------------------------------------- /src/css/JobAdvertisementAdd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/JobAdvertisementAdd.css -------------------------------------------------------------------------------- /src/css/JobAdvertisementList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/JobAdvertisementList.css -------------------------------------------------------------------------------- /src/css/JobSeekerCss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/JobSeekerCss.css -------------------------------------------------------------------------------- /src/css/LeftMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/LeftMenu.css -------------------------------------------------------------------------------- /src/css/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/Login.css -------------------------------------------------------------------------------- /src/css/MainLayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/MainLayout.css -------------------------------------------------------------------------------- /src/css/Navi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/css/Navi.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/store/actions/CvActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/CvActions.js -------------------------------------------------------------------------------- /src/store/actions/CvEducationInformationActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/CvEducationInformationActions.js -------------------------------------------------------------------------------- /src/store/actions/CvForeignLanguageActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/CvForeignLanguageActions.js -------------------------------------------------------------------------------- /src/store/actions/CvSocialMediaActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/CvSocialMediaActions.js -------------------------------------------------------------------------------- /src/store/actions/CvSocialMediaStateActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/CvSocialMediaStateActions.js -------------------------------------------------------------------------------- /src/store/actions/CvTechnologyActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/CvTechnologyActions.js -------------------------------------------------------------------------------- /src/store/actions/CvTechnologyStateActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/CvTechnologyStateActions.js -------------------------------------------------------------------------------- /src/store/actions/CvWorkExperienceActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/CvWorkExperienceActions.js -------------------------------------------------------------------------------- /src/store/actions/EducationInformationActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/EducationInformationActions.js -------------------------------------------------------------------------------- /src/store/actions/EmployerActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/EmployerActions.js -------------------------------------------------------------------------------- /src/store/actions/JobSeekerActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/JobSeekerActions.js -------------------------------------------------------------------------------- /src/store/actions/PhotoActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/PhotoActions.js -------------------------------------------------------------------------------- /src/store/actions/SystemPersonnelActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/SystemPersonnelActions.js -------------------------------------------------------------------------------- /src/store/actions/TimerStateActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/TimerStateActions.js -------------------------------------------------------------------------------- /src/store/actions/UserActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/UserActions.js -------------------------------------------------------------------------------- /src/store/actions/WorkExperienceActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/actions/WorkExperienceActions.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/configureStore.js -------------------------------------------------------------------------------- /src/store/initialValues/Cv.js: -------------------------------------------------------------------------------- 1 | export const cvs={} -------------------------------------------------------------------------------- /src/store/initialValues/CvForeignLanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/initialValues/CvForeignLanguage.js -------------------------------------------------------------------------------- /src/store/initialValues/CvSocialMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/initialValues/CvSocialMedia.js -------------------------------------------------------------------------------- /src/store/initialValues/CvTechnology.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/initialValues/CvTechnology.js -------------------------------------------------------------------------------- /src/store/initialValues/CvWorkExperienceState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/initialValues/CvWorkExperienceState.js -------------------------------------------------------------------------------- /src/store/initialValues/EducationInformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/initialValues/EducationInformation.js -------------------------------------------------------------------------------- /src/store/initialValues/Employer.js: -------------------------------------------------------------------------------- 1 | export const employer = {} -------------------------------------------------------------------------------- /src/store/initialValues/JobSeeker.js: -------------------------------------------------------------------------------- 1 | export const jobSeeker ={} -------------------------------------------------------------------------------- /src/store/initialValues/ProfilePhoto.js: -------------------------------------------------------------------------------- 1 | export const profilePhoto={} -------------------------------------------------------------------------------- /src/store/initialValues/SystemPersonnel.js: -------------------------------------------------------------------------------- 1 | export const systemPersonnel={} -------------------------------------------------------------------------------- /src/store/initialValues/Timer.js: -------------------------------------------------------------------------------- 1 | export const timerState={} -------------------------------------------------------------------------------- /src/store/initialValues/User.js: -------------------------------------------------------------------------------- 1 | export const user={} -------------------------------------------------------------------------------- /src/store/initialValues/WorkExperience.js: -------------------------------------------------------------------------------- 1 | export const workExperience={} 2 | -------------------------------------------------------------------------------- /src/store/reducers/CvEducationInformationStateReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvEducationInformationStateReducer.js -------------------------------------------------------------------------------- /src/store/reducers/CvForeignLanguageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvForeignLanguageReducer.js -------------------------------------------------------------------------------- /src/store/reducers/CvForeignLanguageStateReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvForeignLanguageStateReducer.js -------------------------------------------------------------------------------- /src/store/reducers/CvReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvReducer.js -------------------------------------------------------------------------------- /src/store/reducers/CvSocialMediaReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvSocialMediaReducer.js -------------------------------------------------------------------------------- /src/store/reducers/CvSocialMediaStateReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvSocialMediaStateReducer.js -------------------------------------------------------------------------------- /src/store/reducers/CvTechnologyReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvTechnologyReducer.js -------------------------------------------------------------------------------- /src/store/reducers/CvTechnologyStateReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvTechnologyStateReducer.js -------------------------------------------------------------------------------- /src/store/reducers/CvWorkExperienceStateReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/CvWorkExperienceStateReducer.js -------------------------------------------------------------------------------- /src/store/reducers/EducationInformationReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/EducationInformationReducer.js -------------------------------------------------------------------------------- /src/store/reducers/EmployerReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/EmployerReducer.js -------------------------------------------------------------------------------- /src/store/reducers/JobSeekerReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/JobSeekerReducer.js -------------------------------------------------------------------------------- /src/store/reducers/PhotoReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/PhotoReducer.js -------------------------------------------------------------------------------- /src/store/reducers/SystemPersonnelReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/SystemPersonnelReducer.js -------------------------------------------------------------------------------- /src/store/reducers/TimerStateReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/TimerStateReducer.js -------------------------------------------------------------------------------- /src/store/reducers/UserReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/UserReducer.js -------------------------------------------------------------------------------- /src/store/reducers/WorkExperienceReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/reducers/WorkExperienceReducer.js -------------------------------------------------------------------------------- /src/store/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeynebb/HrmsProjectReact/HEAD/src/store/rootReducer.js --------------------------------------------------------------------------------