working on organization create endpoint

This commit is contained in:
Arjun Patel
2019-01-27 19:40:18 -08:00
parent 1aa0d2268a
commit 60590906a0
5 changed files with 77 additions and 9 deletions
+10
View File
@@ -0,0 +1,10 @@
const express = require('express'),
router = express.Router(),
roles = require('../helpers/roles');
const controllers = require('../controllers/organization');
// POST Signup route
router.post('/', controllers.organization.create);
module.exports = router;