From 85cd94658783abc19a0459396a91331898399458 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Fri, 18 Jul 2014 17:55:53 +0200 Subject: [PATCH] Add a route for the admin page --- public/vroom.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/vroom.pl b/public/vroom.pl index 2405349..f7837f3 100755 --- a/public/vroom.pl +++ b/public/vroom.pl @@ -708,6 +708,9 @@ get '/about' => sub { # Route for the help page get '/help' => 'help'; +# Route for the admin page +get 'admin' => 'admin'; + # Routes for feedback. One get to display the form # and one post to get data from it get '/feedback' => 'feedback';