Small code layout change.

This commit is contained in:
Martin Edenhofer 2013-07-26 22:50:28 +02:00
parent c817b23168
commit e47b20ec03

View file

@ -4,7 +4,7 @@ module ExtraRoutes
map.match '/api/taskbar/:id', :to => 'taskbar#show', :via => :get map.match '/api/taskbar/:id', :to => 'taskbar#show', :via => :get
map.match '/api/taskbar', :to => 'taskbar#create', :via => :post 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#update', :via => :put
map.match '/api/taskbar/:id', :to => 'taskbar#destroy', :via => :delete map.match '/api/taskbar/:id', :to => 'taskbar#destroy',:via => :delete
end end
module_function :add module_function :add
end end