MEDIUM: GET /recipes/saved/collections missing tier gate — free users can list paid feature #95
Labels
No labels
accessibility
backlog
beta-feedback
bug
duplicate
enhancement
feature-request
help wanted
invalid
needs-design
needs-triage
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Circuit-Forge/kiwi#95
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
The
GET /api/v1/recipes/saved/collectionsendpoint is missing a tier check. Free-tier users can call it (they get an empty list, since they have no collections). All write operations (POST, PATCH, DELETE) are properly gated. The GET is an inconsistency.Affected Code
app/api/endpoints/saved_recipes.py:While this is low-risk (free users get an empty list), it violates feature-gating consistency and may confuse the frontend about whether the feature is available.
Fix