bmc_hub/app/ticket/__init__.py
Christian 3806c7d011 feat(ticket-module): Implement ticket system with comprehensive database schema, permissions, and testing suite
- Added migration 025 for the Ticket System, creating tables for tickets, comments, attachments, worklogs, prepaid cards, and audit logs.
- Introduced migration 026 to add ticket-related permissions to the auth system and assign them to user groups.
- Developed a test suite for the Ticket Module, validating database schema, ticket number generation, prepaid card constraints, service logic, worklog creation, audit logging, and views.
2025-12-15 23:40:23 +01:00

11 lines
263 B
Python

"""
Ticket System & Klippekort Module
==================================
Isoleret modul til ticket management og klippekort (prepaid time cards).
Alle tabeller bruger 'tticket_' prefix og kan uninstalleres uden at påvirke core data.
"""
__version__ = "1.0.0"