Initial commit

This commit is contained in:
Naida Vatric
2019-10-30 23:45:40 +01:00
parent 2948ac6c38
commit 46d32196d9
6 changed files with 3406 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
//Call for adding a permission to a group or user
//
const handleAddPermission = (req, res, db) => {
//Parsing req body
const { reqowner, reqownertype, reqobjname, reqtype} =req.body;
res.json('Trying to add a permission');
}
module.exports = {
handleAddPermission
}