Torsten Schulz torsten
  • Joined on 2025-12-19
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 13:28:04 +01:00
5b0a3baa21 feat(club): enhance club access routes and permissions handling
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 13:22:25 +01:00
9cb9ff511c feat(club): refine access control in loadOpenRequests method
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 13:19:45 +01:00
e079fe4827 feat(club): improve club access logic and refactor API calls
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 13:15:12 +01:00
2c8cad52a7 feat(router): enhance club loading logic and update route parameter naming
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 12:14:32 +01:00
12184c2f72 feat(store): normalize permissions data structure in loadPermissions action
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 12:09:25 +01:00
1f94c273ae feat(activate): add dialog state management and auto-activation on mount
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 12:02:17 +01:00
e333a54025 feat(api): refactor API client usage across frontend components
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 11:53:30 +01:00
a86c05eb66 feat(auth): add logging for user registration and activation email process
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 11:50:22 +01:00
c2dbf0a12d refactor(auth): simplify user registration process by removing rollback logic
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 11:44:26 +01:00
a8470145a0 refactor(tests): remove obsolete test files and clean up package.json
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 11:26:29 +01:00
2871b79b04 chore(dependencies): update package-lock.json and package.json for dependency versions
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 11:21:57 +01:00
503ff90dfa refactor(auth): update user registration and activation responses for security
torsten pushed to main at torsten/trainingstagebuch 2026-02-04 11:12:39 +01:00
673a3afbb5 feat(tournament): enhance external participant management with email and address fields
torsten pushed to main at torsten/yourpart-daemon 2026-02-04 09:10:40 +01:00
2293c1204b Add SQL query for product price history: Introduced a new query to insert regional product prices into the history table, calculating prices based on sell cost and worth percentage. Updated ValueRecalculationWorker to log current prices for affected regions, enhancing price tracking functionality.
torsten pushed to main at torsten/yourpart3 2026-02-04 09:03:02 +01:00
14775eb556 Add product price history model and database schema: Implement associations for ProductPriceHistory with ProductType and RegionData. Update FalukantService to utilize active character for user-related operations. Ensure product price history table exists in the database with appropriate structure and indexing.
torsten pushed to main at torsten/yourpart-daemon 2026-02-02 15:48:55 +01:00
00cb97ec57 Enhance logging for sales checks in DirectorWorker: Added detailed logging statements to track the sales verification process, including cases with no items to sell and the number of inventory items found. This improves visibility into the sales workflow and aids in debugging.
torsten pushed to main at torsten/yourpart-daemon 2026-02-02 15:29:55 +01:00
85b4c73c11 Update user money handling to prevent serialization errors: Adjusted the SQL query to cast money as numeric and modified the UserCharacterWorker to clamp and format the money value before executing the update. This change ensures valid numeric input and enhances error handling for user transactions.
torsten pushed to main at torsten/yourpart-daemon 2026-02-02 15:25:14 +01:00
658a9034ed Add SQL query to count children by user: Introduced a new query to count distinct children associated with a user across all their characters. Updated UserCharacterWorker to utilize this new query, replacing the previous count query. This enhances user-specific data retrieval capabilities.
torsten pushed to main at torsten/yourpart-daemon 2026-02-02 15:18:47 +01:00
460310ae89 Refactor error handling in ProduceWorker: Simplify error logging by removing detailed error messages and replacing them with silent error handling. This change streamlines the code and reduces console output during production processing, while maintaining functionality.
torsten pushed to main at torsten/yourpart-daemon 2026-02-02 15:04:57 +01:00
2f875d6c1c Refactor SQL query for finished productions: Update to use DISTINCT ON for unique production IDs, change JOINs to LEFT JOINs for character and director relationships, and simplify capacity checks to ensure sufficient storage for productions. Adjust ordering for improved query performance.