Inboxen / website

obsolete - use https://github.com/Inboxen/Inboxen
GNU Affero General Public License v3.0
1 stars 28 forks source link

Filter Inboxes by tag #148

Closed moggers87 closed 10 years ago

moggers87 commented 10 years ago

Filtering Inboxes by tag would actually make tags useful.

How I imagine it to work:

The user types one or more tags into the search bar and is sent to a page that looks like their home view, except it only has Inboxes with that tag(s). A unified view of all emails in those Inboxes should also be available.

tsyesika commented 10 years ago

This sounds like how I imagine it to work too, there needs to be a very clear place on the page which distinguishes it from just the home page. I suggest that under the breadcrumbs we list all the tags currently being filtered on.

Quetions: 1) Do we match on partial tags? 2) Case sensitivity? 3) Do we match with punctuation (hyphens, spaces?) e.g. ("face book" as a tag and "facebook")?

moggers87 commented 10 years ago

I'd forgotten about the breadcrumbs, good call.

As for your questions, I was just going to use __icontains as this offloads the searching to the database. Q3 would require full text search which I think belongs in #32