From 7134bca955be6d23cacc861eb38e58583a7de72a Mon Sep 17 00:00:00 2001 From: Matthias Meusburger Date: Tue, 10 Sep 2024 15:47:13 +0000 Subject: [PATCH] Bug 35659: (QA follow-up): Add koha_object(s)_class functions for OaiServer.pm Signed-off-by: Victor Grousset/tuxayo Signed-off-by: David Cook Sponsored-by: Association KohaLa - https://koha-fr.org/ Signed-off-by: Katrin Fischer --- Koha/Schema/Result/OaiServer.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Koha/Schema/Result/OaiServer.pm b/Koha/Schema/Result/OaiServer.pm index bcad5dc9e0..a1a862dbc5 100644 --- a/Koha/Schema/Result/OaiServer.pm +++ b/Koha/Schema/Result/OaiServer.pm @@ -124,5 +124,12 @@ __PACKAGE__->set_primary_key("oai_server_id"); # Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-07-31 14:51:58 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HeQgY+4P10NKCtLqdExv+g +sub koha_object_class { + 'Koha::OAIServer'; +} +sub koha_objects_class { + 'Koha::OAIServers'; +} + # You can replace this text with custom code or comments, and it will be preserved on regeneration 1; -- 2.39.5