sort endpoints by route

This commit is contained in:
sbwalker
2025-03-11 13:11:19 -04:00
parent 8d4b30140e
commit 262d6a1529
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ namespace Oqtane.Controllers
ControllerMethod = controllerMethod
};
}
);
).OrderBy(item => item.Route);
return Json(output);
}