tables will now change URL query when a filter changes

This commit is contained in:
2020-11-19 18:09:59 +01:00
parent 646fdef67a
commit 1892ecff7d
14 changed files with 121 additions and 26 deletions
+2 -2
View File
@@ -81,9 +81,9 @@ namespace zero.Web.Controllers
[HttpGet]
public async Task<IActionResult> StreamThumbnail([FromQuery] string id, [FromQuery] bool thumb = true, [FromQuery] bool enforceAppId = true)
public async Task<IActionResult> StreamThumbnail([FromQuery] string id, [FromQuery] bool thumb = true, [FromQuery] bool core = false)
{
string path = await Api.GetSourceById(id, thumb, enforceAppId);
string path = await Api.GetSourceById(id, thumb, core);
if (path == null)
{