View | Details | Raw Unified | Return to bug 23991
Collapse All | Expand All

(-)a/Koha/Suggestions.pm (-5 / +10 lines)
Lines 32-37 Koha::Suggestions - Koha Suggestion object set class Link Here
32
32
33
=head1 API
33
=head1 API
34
34
35
=head2 Class methods
36
37
=head3 search_limited
38
39
    my $suggestions = Koha::Suggestions->search_limited( $params, $attributes );
40
41
Returns all the suggestions the logged in user is allowed to see.
42
35
=cut
43
=cut
36
44
37
sub search_limited {
45
sub search_limited {
Lines 53-63 sub search_limited { Link Here
53
    return $self->search($params, $attributes);
61
    return $self->search($params, $attributes);
54
}
62
}
55
63
56
=head2 Class Methods
64
=head2 Internal methods
57
58
=cut
59
65
60
=head3 type
66
=head3 _type
61
67
62
=cut
68
=cut
63
69
64
- 

Return to bug 23991