Maybe I'm just missing it, but I can't find the new location for this API. We used in in 5.14 to build tabs and task counts for a given user. Thanks in advance.
Here was the old endpoint that we were using: /service/tasks-summary?&user=XXXX
Basically, it returned the count for tasks that user XXXX had claimed, and for each group that XXXX was in, it would return counts for unassigned tasks. We used this service to render tabs that look like this:
The task-summary api was a really old one (v1 of the REST api, for the first UI we had 5 years ago). It has been removed, as it's not a very performance query (in fact, it was with multiple queries). The only solution now would be to add a Spring bean to the classpath that does the same and exposes the endpoint.