From 79b93a6bdfe69b0d9ec173c537d1046c4163e402 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 18 Nov 2022 12:00:06 -0300 Subject: [PATCH] Bug 32178: (QA follow-up) Correct modules import Signed-off-by: Tomas Cohen Arazi --- Koha/REST/Plugin/Auth/IdP.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/REST/Plugin/Auth/IdP.pm b/Koha/REST/Plugin/Auth/IdP.pm index 501f7b549e..8c3b010f3d 100644 --- a/Koha/REST/Plugin/Auth/IdP.pm +++ b/Koha/REST/Plugin/Auth/IdP.pm @@ -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; -- 2.39.5