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
327 B
10 lines
327 B
'use strict';
|
|
|
|
const backups = require('../../controllers/homepage/index');
|
|
|
|
module.exports = function (app, router, opts, AuthCode) {
|
|
|
|
app.fs.api.logAttr['GET/homepage/node/resources'] = { content: '获取节点资源信息', visible: true };
|
|
router.get('/homepage/node/resources', backups.getNodeResources(opts))
|
|
|
|
};
|
|
|