treebird/perl/notifications.pm
nekobit a90878c1b8 Notifications perlify
FossilOrigin-Name: 0d65589909abc6c72911d68ef4c03f48c7d3f552ba5c82d681964eefbf8a2128
2022-07-26 22:04:44 +00:00

20 lines
325 B
Perl

package notifications;
use Exporter 'import';
our @EXPORT = qw( notification_compact );
use template_helpers 'to_template';
sub notification_compact
{
my ($ssn, $data, $notif) = @_;
my %vars = (
prefix => $ssn,
notif => $notif
);
to_template(\%vars, \$data->{'notif_compact.tt'});
}