Add support for accessing changesets as XML through the API via the
changeset controller "read" method
This commit is contained in:
parent
7a216c0ce6
commit
e48cbc6a5f
3 changed files with 43 additions and 0 deletions
|
@ -2,6 +2,7 @@ ActionController::Routing::Routes.draw do |map|
|
|||
|
||||
# API
|
||||
map.connect "api/#{API_VERSION}/changeset/create", :controller => 'changeset', :action => 'create'
|
||||
map.connect "api/#{API_VERSION}/changeset/:id", :controller => 'changeset', :action => 'read'
|
||||
map.connect "api/#{API_VERSION}/changeset/upload", :controller => 'changeset', :action => 'upload'
|
||||
|
||||
map.connect "api/#{API_VERSION}/node/create", :controller => 'node', :action => 'create'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue