- Added TablesList page

- Added Insert Record empty
This commit is contained in:
Paolo Arena
2019-10-20 01:21:54 +02:00
parent 3424b20e9a
commit 93eae51ab8
16 changed files with 568 additions and 88 deletions

View File

@@ -65,6 +65,13 @@ router.post('/', authenticate, (req, res) => {
router.patch('/:id', authenticate, (req, res) => {
var id = req.params.id;
// ------------- EXAMPLES: -----------------------
// var mionome = req.query.name; // Esempio miosito.com?name=pippo
// const plainText = req. body.plainText; //
// ----------------------------------------------------
var body = _.pick(req.body, tools.allfieldProject());
tools.mylogshow('PATCH PROJECT: ', id);