Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docassemble/AssemblyLine/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,7 @@ def find_matching_sessions(
List[Dict[str, Any]]: A list of saved sessions for the specified filename that match the search keyword and metadata filters

Example:
```python
matching_sessions = find_matching_sessions(
"smith",
user_id="all",
Expand All @@ -529,9 +530,8 @@ def find_matching_sessions(
}
)

Example:
{"owner": ("samantha", "ILIKE", None), "age": (30, ">=", "int"), "status": ("%complete%", "LIKE", None)}

```
"""
if not metadata_column_names:
metadata_column_names = {"title", "auto_title", "description"}
Expand Down
Loading