We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@CachedProperty
FacetedSessionInfoViewlet.sessions
ItemSessionInfoViewlet.sessions
1 parent 267f44c commit e68d5b6Copy full SHA for e68d5b6
CHANGES.rst
@@ -41,6 +41,8 @@ Changelog
41
- Turned file info in session annotation from `dict` to `PersistentMapping`.
42
Entire annotation structure is now persistent, remove `_p_changed`.
43
[gbastien]
44
+- Use `@CachedProperty` for `FacetedSessionInfoViewlet.sessions` and `ItemSessionInfoViewlet.sessions`.
45
+ [gbastien]
46
47
1.0a2 (2026-02-06)
48
------------------
src/imio/esign/browser/views.py
@@ -267,7 +267,7 @@ def render(self):
267
return self.index()
268
return ""
269
270
- @property
+ @CachedProperty
271
def sessions(self):
272
"""Return all sessions that contain files from this context."""
273
return get_sessions_for(self.context.UID())
0 commit comments