allow anonymous on user files root

This commit is contained in:
Paul Schneider 2020-10-18 10:15:08 +01:00
commit 5fd2670794
2 changed files with 7 additions and 8 deletions

View file

@ -130,7 +130,7 @@ namespace Yavsc
_logger.LogInformation("403");
// TODO prettier
context.Context.Response.StatusCode = 403;
context.Context.Response.Redirect("/Home/Status/403");
context.Context.Response.Redirect("/Home/Status/403", false);
}
}