Skip to content
Snippets Groups Projects
Commit 8bf4cf11 authored by Pragnesh Mistry's avatar Pragnesh Mistry Committed by Thibault Delavallée
Browse files

[ADD] project: add my followed task filter

There is currently no 'followed task' filter. Making custom filter does
not work as it erases existing search. When working in some projet context
you do not want to loose your existing search criterions. We therefore
choose to add a new 'my followed task' filter.

We could have made ir.filters not exclusive aka add them to existing
search criterions but "some people" did not want.

Last but not least, we add this filter because FGI requested it.
It seems sufficien to me.
parent 0d5d9fa3
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@
<field name="user_id"/>
<field name="stage_id"/>
<filter string="My Tasks" name="my_tasks" domain="[('user_id','=',uid)]"/>
<filter string="My Followed Tasks" domain="[('message_is_follower', '=', True)]" />
<filter string="Unassigned" name="unassigned" domain="[('user_id', '=', False)]"/>
<separator/>
<filter string="Starred" name="starred" domain="[('priority','=',1)]"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment