025036832a
FossilOrigin-Name: 58d7a2add5fc05eac12f8bacd7071095d91d0c9d3f481454202898b1cf5c115a
21 lines
387 B
Perl
21 lines
387 B
Perl
package notifications;
|
|
use strict;
|
|
use warnings;
|
|
use Exporter 'import';
|
|
|
|
our @EXPORT = qw( generate_notification_compact );
|
|
|
|
use template_helpers 'to_template';
|
|
|
|
sub generate_notification_compact
|
|
{
|
|
my ($ssn, $data, $notif) = @_;
|
|
|
|
my %vars = (
|
|
prefix => '',
|
|
ssn => $ssn,
|
|
notif => $notif
|
|
);
|
|
|
|
to_template(\%vars, \$data->{'notif_compact.tt'});
|
|
}
|