Bug 32178: (QA follow-up) Correct modules import
authorTomas Cohen Arazi <tomascohen@theke.io>
Fri, 18 Nov 2022 15:00:06 +0000 (12:00 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Fri, 18 Nov 2022 15:04:32 +0000 (12:04 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha/REST/Plugin/Auth/IdP.pm

index 501f7b5..8c3b010 100644 (file)
@@ -23,9 +23,9 @@ use Mojo::Base 'Mojolicious::Plugin';
 
 use Koha::Exceptions;
 use Koha::Exceptions::Auth;
-use Koha::Patron;
+use Koha::Patrons;
 
-use C4::Auth;
+use C4::Auth qw(create_basic_session);
 
 use CGI;