azure aith wip

This commit is contained in:
Jan Prochazka
2024-08-02 15:12:38 +02:00
parent fc448ed578
commit 112513a569
6 changed files with 13 additions and 5 deletions

View File

@@ -67,7 +67,7 @@ module.exports = function useController(app, electron, route, controller) {
}
if (raw) {
router[method](routeAction, controller[key]);
router[method](routeAction, (req, res) => controller[key](req, res));
} else {
router[method](routeAction, async (req, res) => {
// if (controller._init && !controller._init_called) {