
- Added AuditUserMiddleware to track the current user for auditing purposes. - Introduced audit_context for managing the current user in thread-local storage. - Updated Control and Incident models to include created_at and updated_at timestamps. - Refactored Control and Incident serializers to handle related risks and timestamps. - Modified views to set the _changed_by attribute for user actions. - Enhanced incident listing and detail views to display related risks and user actions. - Updated templates for better presentation of risks and incidents. - Added migrations for new fields and relationships in the database. - Improved filtering options in the incident list view.
24 lines
622 B
Python
24 lines
622 B
Python
# Generated by Django 5.2.6 on 2025-09-09 09:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("risks", "0016_rename_updatet_at_control_updated_at_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="incident",
|
|
name="status",
|
|
field=models.CharField(
|
|
choices=[
|
|
("open", "Opened"),
|
|
("in_progress", "In Progress"),
|
|
("closed", "Closed"),
|
|
],
|
|
max_length=12,
|
|
),
|
|
),
|
|
]
|