运维服务中台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
258 B

'use strict';
const form = require('../../controllers/form');
module.exports = function (app, router, opts) {
app.fs.api.logAttr['GET/unfinished'] = { content: '表单待办事项', visible: true };
router.get('/unfinished', form.getUnfinished);
};