proxy: disabled save protection of tasks.json in production

This commit is contained in:
Vašek Šraier 2020-10-22 15:23:31 +02:00
parent 37ebf73cab
commit ce9760a84b

View file

@ -34,8 +34,10 @@ namespace Ksp.WebServer.Controllers
[HttpPost]
public async Task<IActionResult> Post()
{
if (env.IsProduction())
return this.Forbid();
// Saving in production is now enabled in order to allow people from the outside
// to modify tasks.json using the editor.
// if (env.IsProduction())
// return this.Forbid();
// TODO: auth org
using var rdr = new StreamReader(HttpContext.Request.Body);