separate sync for pull (implemented) and push (not yet)

This commit is contained in:
azivner
2017-10-26 20:31:31 -04:00
parent f6033705a7
commit 266727a21b
9 changed files with 116 additions and 73 deletions

View File

@@ -4,7 +4,7 @@ const express = require('express');
const router = express.Router();
const auth = require('../services/auth');
router.get('', auth.checkAuth, (req, res, next) => {
router.get('', auth.checkAuthWithoutMigration, (req, res, next) => {
res.render('migration', {});
});