Some tasks have many collaborators like 30-80 people. I want to check if someone is already CCed, and add them only if they are not added yet.
What would be the best way to do that?
Option 1 (not working):
When I try to search the text in the names in this screenshot with browser’s Cmd/Ctrl+F search feature,
the names are collapsed and I can’t search the names anymore:
Option 2 (not working):
If the collaborators are sorted by alphabetically it’d be easy to check, but the collaborators are sorted by when they were added.
Option 3 (working but slow):
Get the task gid from the URL, call this API:
https://app.asana.com/api/1.0/tasks/{task_gid}?opt_fields=followers.name
, and I can search the response text with Cmd/Ctrl+F.
Option 4 (partially working)
Try to add the collaborator anyway.
I can’t know if they are already added or not, except for the toast message (notification) saying “<names> added to the collaborator. Undo?”, which is sometimes displayed.
Option 5…
Any other ideas? Thank you in advance