Declare api node ways as nested resources
This commit is contained in:
parent
e206dd527e
commit
6a50a5e871
10 changed files with 113 additions and 66 deletions
5
app/views/api/nodes/ways/index.json.jbuilder
Normal file
5
app/views/api/nodes/ways/index.json.jbuilder
Normal file
|
@ -0,0 +1,5 @@
|
|||
json.partial! "api/root_attributes"
|
||||
|
||||
json.elements do
|
||||
json.array! @ways, :partial => "api/ways/way", :as => :way
|
||||
end
|
5
app/views/api/nodes/ways/index.xml.builder
Normal file
5
app/views/api/nodes/ways/index.xml.builder
Normal file
|
@ -0,0 +1,5 @@
|
|||
xml.instruct!
|
||||
|
||||
xml.osm(OSM::API.new.xml_root_attributes) do |osm|
|
||||
osm << (render(:partial => "api/ways/way", :collection => @ways) || "")
|
||||
end
|
|
@ -1,5 +0,0 @@
|
|||
json.partial! "api/root_attributes"
|
||||
|
||||
json.elements do
|
||||
json.array! @ways, :partial => "way", :as => :way
|
||||
end
|
|
@ -1,5 +0,0 @@
|
|||
xml.instruct!
|
||||
|
||||
xml.osm(OSM::API.new.xml_root_attributes) do |osm|
|
||||
osm << (render(@ways) || "")
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue