From 9b2c7ff303e24d3efb827c61f1127db476dd689b Mon Sep 17 00:00:00 2001 From: Etienne Dysli Metref Date: Thu, 6 Dec 2012 14:27:55 +0800 Subject: [PATCH] Basic route for Redmine 1.4 compatibility Re-create the default route that was defined in 1.3. --- config/routes.rb | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 config/routes.rb diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..fe0427b --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,3 @@ +ActionController::Routing::Routes.draw do |map| + map.connect 'reminders/:action/:id', :controller => 'reminders' +end