Project

Profile

Help

Story #3061

Updated by dkliban@redhat.com over 6 years ago

A GET request to    api/v3/tasks endpoint currently returns a list of all tasks with their progress reports included in the response. This can be too verbose.  

 The Task viewset needs to be broken up into two viewsets. One will handle GET requests to api/v3/tasks/. LIST requests. The other will handle GET requests for a specific Task api/v3/tasks/<task-id>/. Task. 

 A new Task serializer needs to be added. This serializer should be associated with the ViewSet that handles listing Tasks. This serializer needs to omit the progress reports.

Back