Files
Ucharify_api/app/routes/donors.route.js
T

34 lines
1000 B
JavaScript

const express = require('express'),
router = express.Router(),
checkAuth = require('../middleware/check-auth');
const donors = require('../controllers/donors/donors.controller.js');
const grants = require('../controllers/donors/grants.controller.js');
// Signup route
router.post('/', donors.create);
// Retrieve all Donors
router.get('/', checkAuth, donors.findAll);
// Retrieve grants with cause and region and charity details by donor_id
router.get('/grants/:donor_id', checkAuth, grants.findByDonorId);
/** Create grants with following body:
* - list of id's selected causes and regions
* - FINAL list of id's of selected organizations
* - donor_id
* */
router.post('/grants/:donor_id', checkAuth, grants.create);
// // Retrieve a single Donor by Id
// router.get('/:donor_id', donors.findById);
// // Delete a Donor with Id
// router.delete('/:donor_id', donors.delete);
// // Update a Donor with Id
// router.put('/api/donors/:donor_id', donors.update);
module.exports = router;