routing stuff + search for page tree

This commit is contained in:
2021-02-08 15:45:25 +01:00
parent 6340459c55
commit d25c3d3e9a
8 changed files with 134 additions and 53 deletions
+2 -2
View File
@@ -16,9 +16,9 @@ namespace zero.Web.Controllers
}
public async Task<IList<TreeItem>> GetChildren([FromQuery] string parent = null, [FromQuery] string active = null)
public async Task<IList<TreeItem>> GetChildren([FromQuery] string parent = null, [FromQuery] string active = null, [FromQuery] string search = null)
{
return await Api.GetChildren(parent, active);
return await Api.GetChildren(parent, active, search);
}
}
}