Comment 1 for bug 1380203

Revision history for this message
Robert Lyon (robertl-9) wrote :

Ok what happens is that when one updates the view access for a bunch of pages at once the update_view_access() function goes and sets the new access for the first item via set_access() and then duplicates those access rules for the others with copy_access().

The problem is the set_access() triggers the activity notification and copy_access() does not so only the first item get notified for.

What is needed is to be able to trigger the notify for each item.

What would be good would be to ignore the notification trigger in the set_access() if we have more than one item to notify for and instead do a notify with message that includes all items we are dealing with.