dashboard-core/theme/dbd-soft-ui/pages/get/commands.js
Jonny_Bro (Nikita) 849a93887a
2023-06-22 19:36:52 +05:00

12 lines
No EOL
220 B
JavaScript

module.exports = {
page: "/commands",
execute: async (req, res, app, config, themeConfig, info) => {
if (themeConfig.commands)
res.render("commands", {
req,
config,
themeConfig,
info,
});
},
};