Is it possible to filter agenda in emacs based on Owner property?
Currently I use tags to set owner of TODO items. This way I can filter agenda by tags like this:
(setq org-agenda-custom-commands
`(("o" "tasks for oleg"
((org-agenda-list)
(org-agenda-filter-apply ,(list "+oleg")))
((org-agenda-remove-tags t)))
("k" "tasks for karl"
((org-agenda-list)
(org-agenda-filter-apply ,(list "+karl")))
((org-agenda-remove-tags t)))
))
It's not convenient to use tags to mark the owner but I see no other way to filter TODO items by Owner.