Bug 31028: (QA follow-up) Add koha_object(s)_class methods to TicketUpdate.pm

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Kyle Hall 2023-02-17 16:58:12 +00:00 committed by Tomas Cohen Arazi
parent ad67b88d28
commit 3adde7ed3b

View file

@ -149,5 +149,11 @@ __PACKAGE__->belongs_to(
__PACKAGE__->add_columns( '+public' => { is_boolean => 1 }, ); __PACKAGE__->add_columns( '+public' => { is_boolean => 1 }, );
# You can replace this text with custom code or comments, and it will be preserved on regeneration sub koha_object_class {
'Koha::Ticket::Update';
}
sub koha_objects_class {
'Koha::Ticket::Updates';
}
1; 1;