From 889144ff1d467e1a091634ffd3992696027aeb6e Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Wed, 28 Feb 2024 16:46:34 +0000 Subject: [PATCH] Bug 36197: Add opac_unauthenticated_ill_requests backend capability to 'Standard' backend Signed-off-by: David Nind --- Koha/ILL/Backend/Standard.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Koha/ILL/Backend/Standard.pm b/Koha/ILL/Backend/Standard.pm index 95c4eec858..44a6c4cd4a 100644 --- a/Koha/ILL/Backend/Standard.pm +++ b/Koha/ILL/Backend/Standard.pm @@ -127,7 +127,9 @@ sub capabilities { provides_batch_requests => sub { return 1; }, # We can create ILL requests with data passed from the API - create_api => sub { $self->create_api(@_) } + create_api => sub { $self->create_api(@_) }, + + opac_unauthenticated_ill_requests => sub { return 1; } }; return $capabilities->{$name}; } -- 2.39.2