We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Description After removing an approver from an appeal, they still see that appeal in their approvals list (GetUserApprovals)
GetUserApprovals
To Reproduce
GET /me/approvals
Proposed Solution This happens because of soft deletion. Need to update the query to add condition: WHERE deleted_at IS NULL in list approvals API
WHERE deleted_at IS NULL
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
After removing an approver from an appeal, they still see that appeal in their approvals list (
GetUserApprovals
)To Reproduce
GetUserApprovals
orGET /me/approvals
Proposed Solution
This happens because of soft deletion. Need to update the query to add condition:
WHERE deleted_at IS NULL
in list approvals APIThe text was updated successfully, but these errors were encountered: