blob: 6d83d3ddf362a2d0c6a2f4cd576e7a1c2aeff626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package FixMyStreet::App::View::Email;
use base 'Catalyst::View::TT';
use strict;
use warnings;
use FixMyStreet;
use FixMyStreet::Template;
__PACKAGE__->config(
CLASS => 'FixMyStreet::Template',
TEMPLATE_EXTENSION => '.txt',
INCLUDE_PATH => [ FixMyStreet->path_to( 'templates', 'email', 'default' ) ],
render_die => 1,
);
=head1 NAME
FixMyStreet::App::View::Email - TT View for FixMyStreet::App
=head1 DESCRIPTION
TT View for FixMyStreet::App.
=cut
1;
|