aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/App/Controller/Reports/New.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Reports/New.pm')
-rw-r--r--perllib/FixMyStreet/App/Controller/Reports/New.pm26
1 files changed, 26 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Reports/New.pm b/perllib/FixMyStreet/App/Controller/Reports/New.pm
new file mode 100644
index 000000000..c4da315e3
--- /dev/null
+++ b/perllib/FixMyStreet/App/Controller/Reports/New.pm
@@ -0,0 +1,26 @@
+package FixMyStreet::App::Controller::Reports::New;
+use Moose;
+use namespace::autoclean;
+
+BEGIN { extends 'Catalyst::Controller'; }
+
+=head1 NAME
+
+FixMyStreet::App::Controller::Reports::New
+
+=head1 DESCRIPTION
+
+Create a new report, or complete a partial one.
+
+=cut
+
+sub report_new : Path : Args(0) {
+ my ( $self, $c ) = @_;
+
+ $c->response->body(
+ 'Matched FixMyStreet::App::Controller::Reports::New in Reports::New.');
+}
+
+__PACKAGE__->meta->make_immutable;
+
+1;