dashboard-core/theme/dbd-soft-ui/pages/get/commands.js

13 lines
302 B
JavaScript
Raw Normal View History

2023-06-19 14:21:58 +05:00
module.exports = {
page: '/commands',
execute: async (req, res, app, config, themeConfig, info) => {
if (themeConfig.commands)
res.render('commands.ejs', {
req,
config,
themeConfig,
info
})
}
}