Commit 85d821d7 authored by Brian Long's avatar Brian Long
Browse files

fix task API query/filter

parent 3625e67c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -56,11 +56,13 @@ public interface TasksApi {

    @POST
    @Path("query")
    @Consumes({ "application/json" })
    @Produces({ "application/json" })
    ResultListDataRepresentation<Task> query(TaskQueryRepresentation request);

    @POST
    @Path("filter")
    @Consumes({ "application/json" })
    @Produces({ "application/json" })
    ResultListDataRepresentation<Task> query(HistoricTaskQueryRepresentation request);