def set_import_acl()

in userbeacon/views.py [0:0]


    def set_import_acl(self, user_name, comm):
        """
        ensure that media imported by this user is read-write to other users in the group
        :param comm: VSCommunicator instance to perform the request
        :return:
        """
        for group_name in settings.REGULAR_USER_VSGROUPS:
            writeurl = "/API/import/access/group/{0}?permission=WRITE".format(group_name)
            comm.do_put(writeurl, run_as=user_name)