X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/258104dfdfba612a1b507e040b072d417e5f8576..7fc83c880ab8ac6e3f6a8778ee7bc65a066670e3:/config/routes.rb?ds=sidebyside diff --git a/config/routes.rb b/config/routes.rb index b0e23301e..817202486 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -125,8 +125,11 @@ OpenStreetMap::Application.routes.draw do resources :old_relations, :path => "/relation/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show resources :changesets, :path => "changeset", :id => /\d+/, :only => :show do match :subscribe, :unsubscribe, :on => :member, :via => [:get, :post] + + namespace :feeds, :path => "" do + resources :changeset_comments, :path => "comments/feed", :only => :index, :defaults => { :format => "rss" } + end end - get "/changeset/:id/comments/feed" => "changeset_comments#index", :as => :changeset_comments_feed, :id => /\d*/, :defaults => { :format => "rss" } resources :notes, :path => "note", :id => /\d+/, :only => [:show, :new] get "/user/:display_name/history" => "changesets#index" @@ -164,7 +167,9 @@ OpenStreetMap::Application.routes.draw do get "/communities" => "site#communities" get "/history" => "changesets#index" get "/history/feed" => "changesets#feed", :defaults => { :format => :atom } - get "/history/comments/feed" => "changeset_comments#index", :as => :changesets_comments_feed, :defaults => { :format => "rss" } + namespace :feeds, :path => "" do + resources :changeset_comments, :path => "/history/comments/feed", :only => :index, :defaults => { :format => "rss" } + end get "/export" => "site#export" get "/login" => "sessions#new" post "/login" => "sessions#create" @@ -255,8 +260,8 @@ OpenStreetMap::Application.routes.draw do match "/user/:display_name/diary/:id/subscribe" => "diary_entries#subscribe", :via => [:get, :post], :as => :diary_entry_subscribe, :id => /\d+/ match "/user/:display_name/diary/:id/unsubscribe" => "diary_entries#unsubscribe", :via => [:get, :post], :as => :diary_entry_unsubscribe, :id => /\d+/ post "/user/:display_name/diary/:id/comments" => "diary_comments#create", :id => /\d+/, :as => :comment_diary_entry - post "/user/:display_name/diary/:id/comments/:comment/hide" => "diary_comments#hide", :id => /\d+/, :comment => /\d+/, :as => :hide_diary_comment - post "/user/:display_name/diary/:id/comments/:comment/unhide" => "diary_comments#unhide", :id => /\d+/, :comment => /\d+/, :as => :unhide_diary_comment + post "/diary_comments/:comment/hide" => "diary_comments#hide", :comment => /\d+/, :as => :hide_diary_comment + post "/diary_comments/:comment/unhide" => "diary_comments#unhide", :comment => /\d+/, :as => :unhide_diary_comment # user pages resources :users, :path => "user", :param => :display_name, :only => [:show, :destroy]