├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── layouts ├── AboutUsLayout.jsx ├── ButtonsOfEdit.jsx ├── ButtonsOfPagination.jsx ├── CandidateLayout.jsx ├── Dashboard.jsx ├── DateLabel.jsx ├── EmployerLayout.jsx ├── FavotireJobPostingLayout.jsx ├── Footer.jsx ├── GithubButton.jsx ├── Headline.jsx ├── HighlightedContent.jsx ├── HomeLayout.jsx ├── JobPostingLayout.jsx ├── LanguageLevelIcons.jsx ├── LinkedinButton.jsx ├── LogIn.jsx ├── MessageModal.jsx ├── Navi.jsx ├── SignUp.jsx ├── ViewAllJobPostingsByPostingDate.jsx └── adminLayouts │ ├── AdminLayout.jsx │ └── CardOfConfirm.jsx ├── logo.svg ├── pages ├── CandidateAdd.jsx ├── CandidateDetail.jsx ├── CandidateList.jsx ├── CandidateUpdate.jsx ├── CoverLetterAdd.jsx ├── CoverLetterEdit.jsx ├── EducationAdd.jsx ├── EducationDelete.jsx ├── EmployerAdd.jsx ├── EmployerDetail.jsx ├── EmployerList.jsx ├── EmployerUpdate.jsx ├── ExperienceAdd.jsx ├── ExperienceDelete.jsx ├── JobPostingAdd.jsx ├── JobPostingDetail.jsx ├── JobPostingList.jsx ├── LanguageLevelAdd.jsx ├── LanguageLevelDelete.jsx ├── LinkAdd.jsx ├── LinkDelete.jsx ├── ResumeDetailsEdit.jsx ├── SkillAdd.jsx ├── SkillDelete.jsx └── adminPages │ ├── AppDetailsEdit.jsx │ ├── CityAdd.jsx │ ├── CityUpdate.jsx │ ├── CompanyStaffAdd.jsx │ ├── CompanyStaffUpdate.jsx │ ├── CompanyStaffUpdateButton.jsx │ ├── Confirm.jsx │ ├── JobTitleAdd.jsx │ ├── JobTitleUpdate.jsx │ ├── LanguageAdd.jsx │ ├── LanguageUpdate.jsx │ ├── LevelAdd.jsx │ ├── LevelUpdate.jsx │ ├── LinkNameAdd.jsx │ ├── LinkNameUpdate.jsx │ ├── WorkingTimeAdd.jsx │ ├── WorkingTimeUpdate.jsx │ ├── WorkingTypeAdd.jsx │ └── WorkingTypeUpdate.jsx ├── reportWebVitals.js ├── services ├── authService.js ├── candidateService.js ├── cityService.js ├── companyStaffService.js ├── coverLetterService.js ├── educationService.js ├── employerService.js ├── experienceService.js ├── favoriteJobPostingService.js ├── jobPostingService.js ├── jobTitleService.js ├── languageLevelService.js ├── languageService.js ├── levelService.js ├── linkNameService.js ├── linkService.js ├── resumeService.js ├── skillService.js ├── updatedEmployerService.js ├── userActivationService.js ├── workingTimeService.js └── workingTypeService.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/layouts/AboutUsLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/AboutUsLayout.jsx -------------------------------------------------------------------------------- /src/layouts/ButtonsOfEdit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/ButtonsOfEdit.jsx -------------------------------------------------------------------------------- /src/layouts/ButtonsOfPagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/ButtonsOfPagination.jsx -------------------------------------------------------------------------------- /src/layouts/CandidateLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/CandidateLayout.jsx -------------------------------------------------------------------------------- /src/layouts/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/Dashboard.jsx -------------------------------------------------------------------------------- /src/layouts/DateLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/DateLabel.jsx -------------------------------------------------------------------------------- /src/layouts/EmployerLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/EmployerLayout.jsx -------------------------------------------------------------------------------- /src/layouts/FavotireJobPostingLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/FavotireJobPostingLayout.jsx -------------------------------------------------------------------------------- /src/layouts/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/Footer.jsx -------------------------------------------------------------------------------- /src/layouts/GithubButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/GithubButton.jsx -------------------------------------------------------------------------------- /src/layouts/Headline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/Headline.jsx -------------------------------------------------------------------------------- /src/layouts/HighlightedContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/HighlightedContent.jsx -------------------------------------------------------------------------------- /src/layouts/HomeLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/HomeLayout.jsx -------------------------------------------------------------------------------- /src/layouts/JobPostingLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/JobPostingLayout.jsx -------------------------------------------------------------------------------- /src/layouts/LanguageLevelIcons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/LanguageLevelIcons.jsx -------------------------------------------------------------------------------- /src/layouts/LinkedinButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/LinkedinButton.jsx -------------------------------------------------------------------------------- /src/layouts/LogIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/LogIn.jsx -------------------------------------------------------------------------------- /src/layouts/MessageModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/MessageModal.jsx -------------------------------------------------------------------------------- /src/layouts/Navi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/Navi.jsx -------------------------------------------------------------------------------- /src/layouts/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/SignUp.jsx -------------------------------------------------------------------------------- /src/layouts/ViewAllJobPostingsByPostingDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/ViewAllJobPostingsByPostingDate.jsx -------------------------------------------------------------------------------- /src/layouts/adminLayouts/AdminLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/adminLayouts/AdminLayout.jsx -------------------------------------------------------------------------------- /src/layouts/adminLayouts/CardOfConfirm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/layouts/adminLayouts/CardOfConfirm.jsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/CandidateAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/CandidateAdd.jsx -------------------------------------------------------------------------------- /src/pages/CandidateDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/CandidateDetail.jsx -------------------------------------------------------------------------------- /src/pages/CandidateList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/CandidateList.jsx -------------------------------------------------------------------------------- /src/pages/CandidateUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/CandidateUpdate.jsx -------------------------------------------------------------------------------- /src/pages/CoverLetterAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/CoverLetterAdd.jsx -------------------------------------------------------------------------------- /src/pages/CoverLetterEdit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/CoverLetterEdit.jsx -------------------------------------------------------------------------------- /src/pages/EducationAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/EducationAdd.jsx -------------------------------------------------------------------------------- /src/pages/EducationDelete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/EducationDelete.jsx -------------------------------------------------------------------------------- /src/pages/EmployerAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/EmployerAdd.jsx -------------------------------------------------------------------------------- /src/pages/EmployerDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/EmployerDetail.jsx -------------------------------------------------------------------------------- /src/pages/EmployerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/EmployerList.jsx -------------------------------------------------------------------------------- /src/pages/EmployerUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/EmployerUpdate.jsx -------------------------------------------------------------------------------- /src/pages/ExperienceAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/ExperienceAdd.jsx -------------------------------------------------------------------------------- /src/pages/ExperienceDelete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/ExperienceDelete.jsx -------------------------------------------------------------------------------- /src/pages/JobPostingAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/JobPostingAdd.jsx -------------------------------------------------------------------------------- /src/pages/JobPostingDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/JobPostingDetail.jsx -------------------------------------------------------------------------------- /src/pages/JobPostingList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/JobPostingList.jsx -------------------------------------------------------------------------------- /src/pages/LanguageLevelAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/LanguageLevelAdd.jsx -------------------------------------------------------------------------------- /src/pages/LanguageLevelDelete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/LanguageLevelDelete.jsx -------------------------------------------------------------------------------- /src/pages/LinkAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/LinkAdd.jsx -------------------------------------------------------------------------------- /src/pages/LinkDelete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/LinkDelete.jsx -------------------------------------------------------------------------------- /src/pages/ResumeDetailsEdit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/ResumeDetailsEdit.jsx -------------------------------------------------------------------------------- /src/pages/SkillAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/SkillAdd.jsx -------------------------------------------------------------------------------- /src/pages/SkillDelete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/SkillDelete.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/AppDetailsEdit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/AppDetailsEdit.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/CityAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/CityAdd.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/CityUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/CityUpdate.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/CompanyStaffAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/CompanyStaffAdd.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/CompanyStaffUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/CompanyStaffUpdate.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/CompanyStaffUpdateButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/CompanyStaffUpdateButton.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/Confirm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/Confirm.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/JobTitleAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/JobTitleAdd.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/JobTitleUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/JobTitleUpdate.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/LanguageAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/LanguageAdd.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/LanguageUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/LanguageUpdate.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/LevelAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/LevelAdd.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/LevelUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/LevelUpdate.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/LinkNameAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/LinkNameAdd.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/LinkNameUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/LinkNameUpdate.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/WorkingTimeAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/WorkingTimeAdd.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/WorkingTimeUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/WorkingTimeUpdate.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/WorkingTypeAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/WorkingTypeAdd.jsx -------------------------------------------------------------------------------- /src/pages/adminPages/WorkingTypeUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/pages/adminPages/WorkingTypeUpdate.jsx -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/services/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/authService.js -------------------------------------------------------------------------------- /src/services/candidateService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/candidateService.js -------------------------------------------------------------------------------- /src/services/cityService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/cityService.js -------------------------------------------------------------------------------- /src/services/companyStaffService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/companyStaffService.js -------------------------------------------------------------------------------- /src/services/coverLetterService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/coverLetterService.js -------------------------------------------------------------------------------- /src/services/educationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/educationService.js -------------------------------------------------------------------------------- /src/services/employerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/employerService.js -------------------------------------------------------------------------------- /src/services/experienceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/experienceService.js -------------------------------------------------------------------------------- /src/services/favoriteJobPostingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/favoriteJobPostingService.js -------------------------------------------------------------------------------- /src/services/jobPostingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/jobPostingService.js -------------------------------------------------------------------------------- /src/services/jobTitleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/jobTitleService.js -------------------------------------------------------------------------------- /src/services/languageLevelService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/languageLevelService.js -------------------------------------------------------------------------------- /src/services/languageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/languageService.js -------------------------------------------------------------------------------- /src/services/levelService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/levelService.js -------------------------------------------------------------------------------- /src/services/linkNameService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/linkNameService.js -------------------------------------------------------------------------------- /src/services/linkService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/linkService.js -------------------------------------------------------------------------------- /src/services/resumeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/resumeService.js -------------------------------------------------------------------------------- /src/services/skillService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/skillService.js -------------------------------------------------------------------------------- /src/services/updatedEmployerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/updatedEmployerService.js -------------------------------------------------------------------------------- /src/services/userActivationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/userActivationService.js -------------------------------------------------------------------------------- /src/services/workingTimeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/workingTimeService.js -------------------------------------------------------------------------------- /src/services/workingTypeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/services/workingTypeService.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/HEAD/src/setupTests.js --------------------------------------------------------------------------------