X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/326d4ecec0ca0817567912f5d45b904df4c5b054..79c306ad06155549ff6e5929ff20a1149b4862c4:/config/routes.rb?ds=sidebyside diff --git a/config/routes.rb b/config/routes.rb index 871fef1bf..77b439865 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -78,14 +78,13 @@ OpenStreetMap::Application.routes.draw do end end - resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :destroy], :controller => "messages", :as => :api_messages do + resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :update, :destroy], :controller => "messages", :as => :api_messages do collection do get "inbox" get "outbox" end end - - post "/user/messages/:id" => "messages#update", :as => :api_message_update + post "/user/messages/:id" => "messages#update" end namespace :api, :path => "api/0.6" do