|
Lines 128-134
sub capabilities {
Link Here
|
| 128 |
provides_batch_requests => sub { return 1; }, |
128 |
provides_batch_requests => sub { return 1; }, |
| 129 |
|
129 |
|
| 130 |
# We can create ILL requests with data passed from the API |
130 |
# We can create ILL requests with data passed from the API |
| 131 |
create_api => sub { $self->create_api(@_) } |
131 |
create_api => sub { $self->create_api(@_) }, |
|
|
132 |
|
| 133 |
opac_unauthenticated_ill_requests => sub { return 1; } |
| 132 |
}; |
134 |
}; |
| 133 |
return $capabilities->{$name}; |
135 |
return $capabilities->{$name}; |
| 134 |
} |
136 |
} |
| 135 |
- |
|
|