trilium/routes/api/migration.js

25 lines
721 B
JavaScript
Raw Normal View History

2017-10-22 09:10:33 +08:00
"use strict";
2017-10-16 05:31:49 +08:00
const express = require('express');
const router = express.Router();
2017-10-16 07:47:05 +08:00
const auth = require('../../services/auth');
2017-11-03 08:48:02 +08:00
const options = require('../../services/options');
const migration = require('../../services/migration');
2017-12-04 11:29:23 +08:00
const app_info = require('../../services/app_info');
2017-10-16 05:31:49 +08:00
router.get('', auth.checkApiAuthForMigrationPage, async (req, res, next) => {
2017-10-16 05:31:49 +08:00
res.send({
db_version: parseInt(await options.getOption('db_version')),
2017-12-04 11:29:23 +08:00
app_db_version: app_info.db_version
2017-10-16 05:31:49 +08:00
});
});
router.post('', auth.checkApiAuthForMigrationPage, async (req, res, next) => {
const migrations = await migration.migrate();
2017-10-16 05:31:49 +08:00
res.send({
migrations: migrations
2017-10-16 05:31:49 +08:00
});
});
module.exports = router;