Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task: Remove the status from result in the /api/v1/tasks response body #537

Open
1 of 3 tasks
kairoaraujo opened this issue Feb 9, 2024 · 0 comments
Open
1 of 3 tasks
Assignees

Comments

@kairoaraujo
Copy link
Member

What is the task about?

The status in data[result] is no longer relevant to the user.

We can remove it from the response JSON body.
However it requires first the following tasks

In the API the change is very simple.
From

status: bool = Field(
description="Task result status. `True` Success | `False` Failure"
)

To

 status: bool = Field( 
     description="Task result status. `True` Success | `False` Failure" , exclude=True
 ) 

Parent feature

No response

References

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants