feat(quest): add full CRUD and image handling for hunt quests

This commit is contained in:
2026-07-31 01:03:54 +02:00
parent 77becc453e
commit 24632742ef
15 changed files with 1228 additions and 7 deletions
+2
View File
@@ -5,6 +5,8 @@ export function parseError(e: unknown): string {
return 'error.401';
case 404:
return 'error.404';
case 400:
return 'error.400';
}
}
return 'error.default';