The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
<%ARGS>
$COLUMN_MAP => {}
</%ARGS>
<%INIT>
return $COLUMN_MAP->{'ReportSpam'} = {
    title     => 'Spam',
    attribute => '',
    value     => sub {
        my $res = $m->scomp('/Ticket/Elements/ReportSpam', id => $_[0]->id);
        $res =~ s/\n/ /g;
        return \$res;
    },
};
</%INIT>