Files
Ucharify_api/app/controllers/admin/organization.controller.js
T
Arjun Patel 2bf26fccbf added roles with checking in middleware
- still need signup for orgs
- login for admin
2019-01-26 20:23:06 -08:00

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;
};