Merge pull request #2427 from mmd-osm/patch/remove_expand_bbox

Remove expand_bbox endpoint
This commit is contained in:
Andy Allan 2019-12-04 12:48:34 +01:00 committed by GitHub
commit f1c6a87aa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 122 deletions

View file

@ -12,7 +12,6 @@ OpenStreetMap::Application.routes.draw do
put "changeset/create" => "api/changesets#create"
post "changeset/:id/upload" => "api/changesets#upload", :id => /\d+/
get "changeset/:id/download" => "api/changesets#download", :as => :changeset_download, :id => /\d+/
post "changeset/:id/expand_bbox" => "api/changesets#expand_bbox", :id => /\d+/
get "changeset/:id" => "api/changesets#show", :as => :changeset_show, :id => /\d+/
post "changeset/:id/subscribe" => "api/changesets#subscribe", :as => :changeset_subscribe, :id => /\d+/
post "changeset/:id/unsubscribe" => "api/changesets#unsubscribe", :as => :changeset_unsubscribe, :id => /\d+/