yet another attempt at fixing reporting sync changes to client

This commit is contained in:
azivner
2017-12-19 23:22:21 -05:00
parent f54d855f55
commit 333735543e
8 changed files with 54 additions and 45 deletions

View File

@@ -4,10 +4,12 @@ const express = require('express');
const router = express.Router();
const auth = require('../services/auth');
const source_id = require('../services/source_id');
const sql = require('../services/sql');
router.get('', auth.checkAuth, async (req, res, next) => {
res.render('index', {
sourceId: await source_id.generateSourceId()
sourceId: await source_id.generateSourceId(),
maxSyncIdAtLoad: await sql.getSingleValue("SELECT MAX(id) FROM sync")
});
});