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
493 B
10 lines
493 B
'use strict';
|
|
|
|
const industrySolution = require('../controllers/industrySolution.js');
|
|
|
|
module.exports = function (app, router, opts) {
|
|
const { middlewares: { auth, resolveExternalUserId } } = app;
|
|
|
|
router.post('/industrySolution', resolveExternalUserId, industrySolution.addIndustrySolution, { content: '生成行业方案', visible: true });
|
|
router.post('/industrySolutions/download', industrySolution.downloadIndustrySolution, { content: '下载行业方案', visible: true });
|
|
};
|
|
|