@@ -, +, @@ --- api/v1/swagger/paths/libraries.json | 10 ++++++++++ t/db_dependent/api/v1/libraries.t | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) --- a/api/v1/swagger/paths/libraries.json +++ a/api/v1/swagger/paths/libraries.json @@ -152,6 +152,11 @@ "$ref": "../definitions.json#/error" } } + }, + "x-koha-authorization": { + "permissions": { + "catalogue": "1" + } } }, "post": { @@ -253,6 +258,11 @@ "$ref": "../definitions.json#/error" } } + }, + "x-koha-authorization": { + "permissions": { + "catalogue": "1" + } } }, "put": { --- a/t/db_dependent/api/v1/libraries.t +++ a/t/db_dependent/api/v1/libraries.t @@ -48,7 +48,7 @@ subtest 'list() tests' => sub { my $another_library = $library->unblessed; # create a copy of $library but make delete $another_library->{branchcode}; # sure branchcode will be regenerated $another_library = $builder->build_object({ class => 'Koha::Libraries', value => $another_library }); - my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 0 } ); + my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 1 } ); ## Authorized user tests my $count_of_libraries = Koha::Libraries->search->count; @@ -119,7 +119,7 @@ subtest 'get() tests' => sub { my $library = $builder->build_object( { class => 'Koha::Libraries' } ); my ( $borrowernumber, $session_id ) = - create_user_and_session( { authorized => 0 } ); + create_user_and_session( { authorized => 1 } ); my $tx = $t->ua->build_tx( GET => "/api/v1/libraries/" . $library->branchcode ); $tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); --