From 052d46c034f86df74e58f925ccfc0edd2972edb6 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 --- 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 bcad5dc9e02..a1a862dbc5a 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.2