Exemplo n.º 1
0
 def get(self):
     """
     Return tasks currently assigned to current user and of which status has is_done attribute set to true.
     ---
     tags:
     - User
     description: It returns only tasks of open projects.
     responses:
         200:
             description: Finished tasks currently assigned to current user
     """
     return user_service.get_done_tasks()
Exemplo n.º 2
0
 def get(self):
     return user_service.get_done_tasks()