Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
747cb40
feat: update to hightide 0.9.0
DasProffi Mar 14, 2026
5f809f4
feat: Add filterlist to PatientList
DasProffi Mar 14, 2026
957005c
Merge remote-tracking branch 'origin' into issue/89-persistant-views
felixevers Mar 22, 2026
9e58347
fix patient list filters
felixevers Mar 22, 2026
d96934b
chore: update hightide version
DasProffi Mar 22, 2026
18bcdd5
Merge branch 'issue/89-persistant-views' of github.com:helpwave/tasks…
DasProffi Mar 22, 2026
f08165e
fix: fix user filter pop up
DasProffi Mar 22, 2026
7bd223e
feat: add sorting and filtering lists to patient tabel
DasProffi Mar 22, 2026
64e778b
Update translations for fast access dialog and add preparation for fa…
DasProffi Mar 22, 2026
f381c45
chore: possible
DasProffi Mar 22, 2026
585115d
rewrite filter and sorting backend logic
felixevers Mar 22, 2026
9b967e8
Merge origin/issue/89-persistant-views with unified query filters
felixevers Mar 22, 2026
2997584
integrate customer views with new filter logic
felixevers Mar 22, 2026
d60fcc2
fix tasks list render
felixevers Mar 22, 2026
ea83ea7
add sorting list from backend
felixevers Mar 22, 2026
7fe261e
expand saved views
felixevers Mar 22, 2026
c8bc820
upgrade hightide to v0.9.5
felixevers Mar 22, 2026
a093777
fix lint
felixevers Mar 22, 2026
f72225c
fix recursing and view sql errors
felixevers Mar 23, 2026
ef8cb07
add multi assignee and optional patient assignment
felixevers Mar 23, 2026
0fbddf7
fix custom view cache
felixevers Mar 24, 2026
58db72c
add location filter
felixevers Mar 24, 2026
31cbf77
update translation keys
felixevers Mar 24, 2026
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
2 changes: 2 additions & 0 deletions backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ alembic downgrade -1
alembic revision --autogenerate -m "description"
```

If `alembic heads` shows more than one head, run `alembic upgrade head` after pulling so merge revisions are applied. After upgrades that add tables (`task_assignees`, etc.), `alembic upgrade head` must succeed before the API can query those tables.

## Docker

The backend is containerized and available as:
Expand Down
14 changes: 0 additions & 14 deletions backend/api/decorators/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,6 @@
from api.decorators.filter_sort import (
apply_filtering,
apply_sorting,
filtered_and_sorted_query,
)
from api.decorators.full_text_search import (
apply_full_text_search,
full_text_search_query,
)
from api.decorators.pagination import apply_pagination, paginated_query

__all__ = [
"apply_pagination",
"paginated_query",
"apply_sorting",
"apply_filtering",
"filtered_and_sorted_query",
"apply_full_text_search",
"full_text_search_query",
]
Loading
Loading