summaryrefslogtreecommitdiff
path: root/archaeological_files/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2025-03-19 11:54:38 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-03-19 12:39:22 +0100
commit3adbd561ced57cb9c950af2d6d7d25f57f8799e0 (patch)
treee2301ff31a54062c731a60774e088f073d6a89cf /archaeological_files/models.py
parent6468fa4c22b5ec2c30b450a5d0f8cc005d01f4be (diff)
downloadIshtar-3adbd561ced57cb9c950af2d6d7d25f57f8799e0.tar.bz2
Ishtar-3adbd561ced57cb9c950af2d6d7d25f57f8799e0.zip
🚑️ fix huge performance problems on permissions when too many items are attached
Diffstat (limited to 'archaeological_files/models.py')
-rw-r--r--archaeological_files/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_files/models.py b/archaeological_files/models.py
index 06d927fcd..9e06db0f2 100644
--- a/archaeological_files/models.py
+++ b/archaeological_files/models.py
@@ -1360,7 +1360,7 @@ class File(
@classmethod
def get_query_owns(cls, ishtaruser):
- return cls._construct_query_own("", cls._get_query_owns_dicts(ishtaruser))
+ return cls._construct_query_own(cls, "", cls._get_query_owns_dicts(ishtaruser))
def is_active(self):
return not bool(self.end_date)