What the web app has
Messages carry tags. POST /api/messages accepts a tags[] array, GET /api/messages
accepts a tag query parameter to filter the feed, and two discovery endpoints back the UI:
| Endpoint |
Purpose |
GET /api/tags/autocomplete |
Tags on public messages matching a case-insensitive literal prefix |
GET /api/tags/trending |
Most-used tags across public messages within a trailing window |
AI's Suggest tags action also feeds this.
What Android has
Nothing. tags is absent from CreateMessageRequest, neither /api/tags/* endpoint is called,
and the feed cannot be filtered by tag.
Done when
A user can tag a post from Android with autocomplete, tap a tag to see that tag's feed, and browse
trending tags.
Filed from the parity review of feature/parity-wip @ 14d7795 against interlinedlist.com (OpenAPI /api/openapi.json, 233 paths) and the public help centre.
What the web app has
Messages carry tags.
POST /api/messagesaccepts atags[]array,GET /api/messagesaccepts a
tagquery parameter to filter the feed, and two discovery endpoints back the UI:GET /api/tags/autocompleteGET /api/tags/trendingAI's Suggest tags action also feeds this.
What Android has
Nothing.
tagsis absent fromCreateMessageRequest, neither/api/tags/*endpoint is called,and the feed cannot be filtered by tag.
Done when
A user can tag a post from Android with autocomplete, tap a tag to see that tag's feed, and browse
trending tags.
Filed from the parity review of
feature/parity-wip@14d7795against interlinedlist.com (OpenAPI/api/openapi.json, 233 paths) and the public help centre.