return 1
if $borrowernumber and $self->owner == $borrowernumber;
my $patron = Koha::Patrons->find( $borrowernumber );
my $patron = Koha::Patrons->find( $borrowernumber ) or return 0;
if $self->is_public and haspermission( $patron->userid, { lists => 'edit_public_lists' } );
return 0;
-