feat: task edition in front end
TS Lint / ESLint (push) Successful in 50s
Python Lint CI / ruff-format-check (push) Successful in 1m33s
Python Lint CI / ty (push) Successful in 1m33s
Python Lint CI / ruff (push) Successful in 1m35s
TS Lint / Oxlint (push) Successful in 3m29s
TS Lint / TypeScript (push) Successful in 3m7s

This commit is contained in:
2026-07-09 18:16:32 +02:00
parent 2e5eb86848
commit 1b8e6ff8ae
6 changed files with 208 additions and 19 deletions
+1
View File
@@ -64,6 +64,7 @@ class Server(gunicorn.app.base.BaseApplication):
try:
task = await Task.get(id=task_uuid)
await task.update_from_dict(parsed_data)
await task.save()
return task.serialize()
except tortoise.exceptions.ValidationError:
flask.abort(400)