Add indexed_by=maybe to cards#2827
Merged
flavorjones merged 3 commits intobasecamp:mainfrom Apr 14, 2026
Merged
Conversation
5d157a3 to
6a78a5b
Compare
flavorjones
approved these changes
Apr 14, 2026
Member
|
@robzolkos Looks good! Needs to be rebased, though. |
6a78a5b to
dd7507d
Compare
Collaborator
Author
|
@flavorjones rebased and we have a transient test issue which is fixed by #2838 Once that one is merged (if ok) I'll rebase again - test should pass. |
flavorjones
approved these changes
Apr 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This adds
indexed_by=maybetoGET /:account_slug/cardsso API clients can ask the cards endpoint for awaiting-triage / "Maybe?" cards.What wasn't possible before
Before this change,
GET /:account_slug/cardssupportedindexed_by=closedandindexed_by=not_now, but there was no equivalent way to ask that same endpoint for awaiting-triage cards.Clients that wanted "Maybe?" cards had to either:
/cardsresult set and filter client-side for cards with no workflow column, or/cardsThat made the cards endpoint asymmetric: Done and Not Now were directly filterable there, but Maybe? was not.
What this PR adds
indexed_by=maybeonGET /:account_slug/cardsindexed_byvalueExample
GET /:account_slug/cards?indexed_by=maybe