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
469b437
adopt: hightide version 0.6.5
DasProffi Jan 9, 2026
098992b
Merge branch 'main' into upgrade/adopt-hightide-0.6.x
DasProffi Jan 9, 2026
9873c9f
Merge main
DasProffi Jan 9, 2026
41ab44b
feat: add table filter
DasProffi Jan 24, 2026
c5ce556
Merge branch 'main' into upgrade/adopt-hightide-0.6.x
DasProffi Jan 24, 2026
b6c6cef
fix: tables and several other bugs
DasProffi Jan 25, 2026
06061a4
fix: fix AssigneeSelect UserInfo PopUp
DasProffi Jan 25, 2026
f886b67
fix: fix printing
DasProffi Jan 26, 2026
58c0908
fix: date in patien data editor
DasProffi Jan 26, 2026
7c5d50d
fix: fix Assignee Select and Priority colors
DasProffi Jan 26, 2026
8b3225b
fix: patient data column sizes and position not being required
DasProffi Jan 26, 2026
2ee5ade
fix: Userinfo pop up on page header
DasProffi Jan 26, 2026
2adbc84
add more decorators for filtering, sorting and searching
felixevers Jan 26, 2026
1f1aed9
add case sensitvity to filter parameters
felixevers Jan 26, 2026
11aeea1
Merge pull request #85 from helpwave/upgrade/adopt-hightide-0.6.x-bac…
felixevers Jan 26, 2026
65d4354
chore: update to hightide 0.6.13
DasProffi Jan 26, 2026
936d660
fix: add and changing of properties
DasProffi Jan 26, 2026
29860ba
feat: update TaskCard and AudiLogCard color
DasProffi Jan 26, 2026
6bd0688
establish table backend connection
felixevers Jan 26, 2026
26d15ab
Merge pull request #86 from helpwave/upgrade/adopt-hightide-0.6.x-bac…
felixevers Jan 26, 2026
c709d3f
centralize filter and sorting logic
felixevers Jan 26, 2026
5849af4
fix lints for frontend
felixevers Jan 26, 2026
4a0c9ca
feat: make table filters, sorting and visibility persistant
DasProffi Jan 26, 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
19 changes: 18 additions & 1 deletion backend/api/decorators/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
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"]
__all__ = [
"apply_pagination",
"paginated_query",
"apply_sorting",
"apply_filtering",
"filtered_and_sorted_query",
"apply_full_text_search",
"full_text_search_query",
]
Loading
Loading