コード例 #1
0
 def get(self):
     """
     Return tasks currently assigned to current user and of which status has is_done attribute set to false.
     ---
     tags:
     - User
     responses:
         200:
             description: Unfinished tasks currently assigned to current user
     """
     return user_service.get_todos()
コード例 #2
0
 def get(self):
     return user_service.get_todos()