Update demo.php

This commit is contained in:
Anyon 2021-11-26 10:22:28 +08:00
parent 2995b2ced7
commit bb6c5f448e

View File

@ -36,6 +36,9 @@ invoke(function (App $app) {
$app->route->post('config/storage', function () {
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
});
$app->route->post('menu', function () {
return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']);
});
$app->route->post('menu/index', function () {
return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']);
});