From a87f5a01502b5df08f5e7b61650be6ea7dbafa30 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 24 Jun 2019 16:56:56 +0100 Subject: [PATCH] Bug 23152: (RM follow-up) Add handling for Koha::Plugin::Methods Signed-off-by: Martin Renvoize --- Koha/Schema/Result/PluginMethod.pm | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/Koha/Schema/Result/PluginMethod.pm b/Koha/Schema/Result/PluginMethod.pm index a36cfb0..c2d7ddc 100644 --- a/Koha/Schema/Result/PluginMethod.pm +++ b/Koha/Schema/Result/PluginMethod.pm @@ -62,6 +62,12 @@ __PACKAGE__->set_primary_key("plugin_class", "plugin_method"); # Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-07-13 12:37:57 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:koGk3Dh0wkslqYPUqUcK0w +sub koha_objects_class { + 'Koha::Plugins::Methods'; +} +sub koha_object_class { + 'Koha::Plugins::Method'; +} # You can replace this text with custom code or comments, and it will be preserved on regeneration 1; -- 1.7.2.5