]> git.openstreetmap.org Git - rails.git/commit
Move node/way/relation/old_* controllers into the api namespace
authorAndy Allan <git@gravitystorm.co.uk>
Sun, 24 Feb 2019 12:37:03 +0000 (13:37 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Thu, 28 Feb 2019 16:12:28 +0000 (17:12 +0100)
commitb38343e5bd95230c6bb2159700102dbca247fa03
tree10bada86970df650d2ec5ba559bd7fada4f2433a
parent9186a6155c4a9bbfd60eddd50f3eb63db78fd07e
Move node/way/relation/old_* controllers into the api namespace
30 files changed:
.rubocop_todo.yml
app/controllers/api/nodes_controller.rb [new file with mode: 0644]
app/controllers/api/old_controller.rb [new file with mode: 0644]
app/controllers/api/old_nodes_controller.rb [new file with mode: 0644]
app/controllers/api/old_relations_controller.rb [new file with mode: 0644]
app/controllers/api/old_ways_controller.rb [new file with mode: 0644]
app/controllers/api/relations_controller.rb [new file with mode: 0644]
app/controllers/api/ways_controller.rb [new file with mode: 0644]
app/controllers/nodes_controller.rb [deleted file]
app/controllers/old_controller.rb [deleted file]
app/controllers/old_nodes_controller.rb [deleted file]
app/controllers/old_relations_controller.rb [deleted file]
app/controllers/old_ways_controller.rb [deleted file]
app/controllers/relations_controller.rb [deleted file]
app/controllers/ways_controller.rb [deleted file]
app/views/browse/feature.html.erb
app/views/browse/history.html.erb
config/routes.rb
test/controllers/api/nodes_controller_test.rb [new file with mode: 0644]
test/controllers/api/old_nodes_controller_test.rb [new file with mode: 0644]
test/controllers/api/old_relations_controller_test.rb [new file with mode: 0644]
test/controllers/api/old_ways_controller_test.rb [new file with mode: 0644]
test/controllers/api/relations_controller_test.rb [new file with mode: 0644]
test/controllers/api/ways_controller_test.rb [new file with mode: 0644]
test/controllers/nodes_controller_test.rb [deleted file]
test/controllers/old_nodes_controller_test.rb [deleted file]
test/controllers/old_relations_controller_test.rb [deleted file]
test/controllers/old_ways_controller_test.rb [deleted file]
test/controllers/relations_controller_test.rb [deleted file]
test/controllers/ways_controller_test.rb [deleted file]