From 72af4d7fa29d059ae785a8e3dd90481e887d2e2b Mon Sep 17 00:00:00 2001 From: Hangzhi Yu <hangzhi@protonmail.com> Date: Wed, 16 Oct 2024 00:56:03 +0200 Subject: [PATCH] Revise comment --- aleksis/apps/chronos/schema/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aleksis/apps/chronos/schema/__init__.py b/aleksis/apps/chronos/schema/__init__.py index b22cad1b..8de72069 100644 --- a/aleksis/apps/chronos/schema/__init__.py +++ b/aleksis/apps/chronos/schema/__init__.py @@ -163,8 +163,8 @@ class SubstitutionBatchCreateOrUpdateMutation(graphene.Mutation): def create_or_update(cls, info, substitution): _id = substitution.id - # Sadly, we can't use the update_or_create method since create_defaults - # is only introduced in Django 5.0 + # Sadly, we can't use the update_or_create method since we can't check + # different permissions depending on the operation with it. if _id.startswith("DUMMY"): dummy, amended_lesson_event_id, datetime_start_iso, datetime_end_iso = _id.split(";") amended_lesson_event = LessonEvent.objects.get(id=amended_lesson_event_id) -- GitLab