Move all the APIs under the same router

This commit is contained in:
Joakim Hellsén 2026-07-21 04:05:35 +02:00
commit c54ceeb7a8
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
27 changed files with 1289 additions and 351 deletions

View file

@ -113,6 +113,7 @@ lint.ignore = [
[tool.ruff.lint.per-file-ignores]
"**/tests/**" = [
"ARG",
"D102",
"FBT",
"PLR0904",
"PLR2004",
@ -124,6 +125,9 @@ lint.ignore = [
"SLF001",
]
"**/migrations/**" = ["RUF012"]
"**/api.py" = [
"PLR0913", # Allow many arguments for API endpoint functions
]
[tool.djlint]
profile = "django"