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()
def get(self): return user_service.get_todos()