Private Task to be accessible to Assign User

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-03-2020 05:07 AM
How to make the PTask be accessible to assigned_to user without the need to promote as a member of the dashboard.
So for example, x user assigned the task card to y user without making the y user [or assignee] as a member of the task board of x user. Once an email notification received by the Assignee that a task has been assigned. The assignee should be able to access the card from the link in the email or by looking the ptask number in the global search.
- Labels:
-
Visual Task Boards (VTB)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-04-2020 08:51 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2020 06:37 AM
I am having the same query. did you find solution for that?
Also when private task is created from checklist there is no option to see it again?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-20-2023 04:38 AM
Amend this 4 acl's like this.
- ACL = vtb_task (read) - answer = VTBTaskSecurity.canRead(current.sys_id)||current.assigned_to == gs.getUserID();
- ACL = vtb_task (write) - answer = VTBTaskSecurity.canWrite(current.sys_id)||current.assigned_to == gs.getUserID();
- ACL = vtb_task.* (read) - answer = VTBTaskSecurity.canRead(current.sys_id)||current.assigned_to == gs.getUserID();
- ACL = vtb_task.* (write) - answer = VTBTaskSecurity.canWrite(current.sys_id)||current.assigned_to == gs.getUserID();