aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/SendReport.pm
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2012-04-04 17:49:01 +0100
committerStruan Donald <struan@exo.org.uk>2012-04-04 17:49:01 +0100
commit1abeb30e2c2d707834708b4d65b9bcf98e4bb084 (patch)
tree0978acf6e1ec1f08fde8fa3ceb0a171003765888 /perllib/FixMyStreet/SendReport.pm
parent70d59a30b5c2c59b1a3380cd2ab039931abaa158 (diff)
implement skipping sending at adding council level and not at
the sending level
Diffstat (limited to 'perllib/FixMyStreet/SendReport.pm')
-rw-r--r--perllib/FixMyStreet/SendReport.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/SendReport.pm b/perllib/FixMyStreet/SendReport.pm
index e3b0b389c..426e8eefe 100644
--- a/perllib/FixMyStreet/SendReport.pm
+++ b/perllib/FixMyStreet/SendReport.pm
@@ -12,6 +12,11 @@ has 'to' => ( is => 'rw', isa => 'ArrayRef', default => sub { [] } );
has 'success' => ( is => 'rw', isa => 'Bool', default => 0 );
has 'error' => ( is => 'rw', isa => 'Str', default => '' );
+
+sub should_skip {
+ return 0;
+}
+
sub get_senders {
my $self = shift;