From 89157fd997794680e185dae825c50272382381c3 Mon Sep 17 00:00:00 2001 From: Horilla Date: Tue, 15 Jul 2025 15:44:25 +0530 Subject: [PATCH] [UPDT] HORILLA: Update Horilla abstract class full_clean method call --- horilla/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horilla/models.py b/horilla/models.py index 64eb9a8b1..1ab821113 100644 --- a/horilla/models.py +++ b/horilla/models.py @@ -91,7 +91,7 @@ class HorillaModel(models.Model): Override the save method to automatically set the created_by and modified_by fields based on the current request user. """ - self.full_clean() + # self.full_clean() request = getattr(_thread_locals, "request", None)