-
Notifications
You must be signed in to change notification settings - Fork 818
Description
Feature Summary
I would like to filter all entires by their hide_globally category setting.
What problem does this feature solve?
Each Category has gives you the option to hide it from the default Unread Page, but the API has no such filter.
This seems like a bit of an oversight to me, as there is then currently no way to, via the API, mimic the behavior of the Web App Unread page without going to it directly, and without loading more entries than necessary from the Get Entries call.
This would ensure parity between the default Web App and the API.
Proposed Solution
Add a bool hidden_globally to the available filters for Get Entries.
Functionally, I could then mimic the functionally of the Web App Unread page like so:
GET /v1/entries?status=unread&hidden_globally=false
Alternatives Considered
I have not been able to come up with alternative solution to this, as there seems to be no way to mimic the exact behavior of the Web App Unread page via the API.
There is of course the option to load Every Single Entry from Get Entries, but this seems very impractical.
Additional Context
I only really have one of four categories that has this attribute, but I'd prefer to keep them separated purposely for Readability and Prioritization.
Checklist
- I have searched existing issues to ensure this feature hasn't been requested before.
- I understand that feature requests are not guaranteed to be implemented.
- I agree to follow the project's contribution guidelines.