Commit initial work on export tab.
This commit is contained in:
parent
b95e10ac8f
commit
1df50231fa
7 changed files with 307 additions and 6 deletions
|
@ -64,6 +64,7 @@ ActionController::Routing::Routes.draw do |map|
|
|||
map.connect '/user/upload_image', :controller => 'user', :action => 'upload_image'
|
||||
map.connect '/index.html', :controller => 'site', :action => 'index'
|
||||
map.connect '/edit.html', :controller => 'site', :action => 'edit'
|
||||
map.connect '/export.html', :controller => 'site', :action => 'export'
|
||||
map.connect '/search.html', :controller => 'way_tag', :action => 'search'
|
||||
map.connect '/login.html', :controller => 'user', :action => 'login'
|
||||
map.connect '/logout.html', :controller => 'user', :action => 'logout'
|
||||
|
@ -121,6 +122,9 @@ ActionController::Routing::Routes.draw do |map|
|
|||
map.connect '/geocoder/search', :controller => 'geocoder', :action => 'search'
|
||||
map.connect '/geocoder/description', :controller => 'geocoder', :action => 'description'
|
||||
|
||||
# export
|
||||
map.connect '/export/start', :controller => 'export', :action => 'start'
|
||||
|
||||
# messages
|
||||
|
||||
map.connect '/user/:display_name/inbox', :controller => 'message', :action => 'inbox'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue