fix: correct ActivityLog import name in user deletion

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
h z
2026-04-16 23:15:45 +01:00
parent 4643a73c60
commit d3f72962c0

View File

@@ -222,7 +222,7 @@ def _reassign_user_references(db: Session, old_id: int, new_id: int) -> None:
project memberships).""" project memberships)."""
from app.models.apikey import APIKey from app.models.apikey import APIKey
from app.models.notification import Notification from app.models.notification import Notification
from app.models.activity import Activity from app.models.activity import ActivityLog as Activity
from app.models.worklog import WorkLog as WorkLogModel from app.models.worklog import WorkLog as WorkLogModel
from app.models.meeting import Meeting, MeetingParticipant from app.models.meeting import Meeting, MeetingParticipant
from app.models.task import Task from app.models.task import Task