event_log - entity and logging sync info

This commit is contained in:
azivner
2017-11-03 22:08:27 -04:00
parent bd71547258
commit e35c2dd4ad
10 changed files with 90 additions and 76 deletions

View File

@@ -8,11 +8,10 @@ const sql = require('../../services/sql');
const options = require('../../services/options');
router.post('/now', auth.checkApiAuth, async (req, res, next) => {
const log = await sync.sync();
await sync.sync();
res.send({
success: true,
log: log
success: true
});
});