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