2bf26fccbf
- still need signup for orgs - login for admin
10 lines
296 B
JavaScript
10 lines
296 B
JavaScript
const db = require('../../config/db.config.js'),
|
|
errorMaker = require('../../helpers/error.maker');
|
|
|
|
const { Grant, Cause, Region, Organization } = db;
|
|
|
|
// PUT to change specific org's verify column to true
|
|
exports.verifyOrg = (req, res, next) => {
|
|
const charity_id = req.params.charity_id;
|
|
};
|