Context
The project list endpoint (GET /api/v1/projects) has no search capability. The frontend was doing client-side filtering, which only searches loaded pages and misses results in unpaginated data.
Implementation
Add an optional search query parameter that performs case-insensitive ILIKE search on project name and description.
Related
Context
The project list endpoint (
GET /api/v1/projects) has no search capability. The frontend was doing client-side filtering, which only searches loaded pages and misses results in unpaginated data.Implementation
Add an optional
searchquery parameter that performs case-insensitive ILIKE search on projectnameanddescription.Related