Browse Source

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>
23.05.x
Kyle Hall 10 months ago
committed by Tomas Cohen Arazi
parent
commit
3adde7ed3b
  1. 8
      Koha/Schema/Result/TicketUpdate.pm

8
Koha/Schema/Result/TicketUpdate.pm

@ -149,5 +149,11 @@ __PACKAGE__->belongs_to(
__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;

Loading…
Cancel
Save