This enhancement adds a standardised way to pass execution information around within Koha::Objects.
Execution data should be set by action methods calling `$self->add_message({ message => $message, type => $type, payload => $payload });` inside the action method.
The caller can then access the execution data using `my $messages = $object->messages;`
|