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.
8 lines
378 B
8 lines
378 B
'use strict';
|
|
|
|
const report = require('../../controllers/report');
|
|
|
|
module.exports = function (app, router, opts) {
|
|
router.get('/reports/schema-versions', report.getSchemaVersions, { content: '获取报表结构版本列表', visible: true });
|
|
router.post('/reports/schema-versions', report.createSchemaVersion, { content: '创建报表结构版本', visible: true });
|
|
};
|
|
|