Refactor RequisitionShop component: remove unused GM panel logic, enhance error handling, and improve player purchase flow. Update tests for RequisitionShop to cover new functionality and ensure proper rendering. Implement curl-based HTTP requests in GM and player tests for better compatibility. Add script to ensure GM user exists in the database with appropriate privileges.

This commit is contained in:
2025-08-15 13:53:13 +02:00
parent 57acd761f9
commit 4c48f04c4e
14 changed files with 2558 additions and 459 deletions

15
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "npm run build",
"group": "build",
"problemMatcher": [
"$eslint-stylish"
],
"isBackground": false
}
]
}