the beginning of the idiots

This commit is contained in:
2025-10-24 14:51:13 -05:00
parent 0b377030c6
commit cb06217ef7
123 changed files with 10279 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
const express = require('express');
const router = express.Router();
const { getProfile, updateProfile, uploadResume, getApplications, applyForJob } = require('../controllers/jobSeekerController');
// Get job seeker profile
router.get('/profile', getProfile);
// Update job seeker profile
router.put('/profile', updateProfile);
// Upload resume
router.post('/resume', uploadResume);
// Get job seeker's applications
router.get('/applications', getApplications);
// Apply for a job
router.post('/apply/:jobId', applyForJob);
module.exports = router;