From e47b20ec0304a84f3f793f7ef1d8c9b8fc6809a5 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Fri, 26 Jul 2013 22:50:28 +0200 Subject: [PATCH] Small code layout change. --- config/routes/taskbar.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes/taskbar.rb b/config/routes/taskbar.rb index c965055ec..fcc73275a 100644 --- a/config/routes/taskbar.rb +++ b/config/routes/taskbar.rb @@ -4,7 +4,7 @@ module ExtraRoutes map.match '/api/taskbar/:id', :to => 'taskbar#show', :via => :get map.match '/api/taskbar', :to => 'taskbar#create', :via => :post map.match '/api/taskbar/:id', :to => 'taskbar#update', :via => :put - map.match '/api/taskbar/:id', :to => 'taskbar#destroy', :via => :delete + map.match '/api/taskbar/:id', :to => 'taskbar#destroy',:via => :delete end module_function :add end