GPX trace rails stuff

This commit is contained in:
Steve Coast 2006-11-27 19:52:18 +00:00
parent f98e6aac0a
commit fb1467a944
9 changed files with 70 additions and 6 deletions

View file

@ -25,6 +25,10 @@ ActionController::Routing::Routes.draw do |map|
map.connect '/logout.html', :controller => 'user', :action => 'logout'
map.connect '/create-account.html', :controller => 'user', :action => 'new'
map.connect '/forgot-password.html', :controller => 'user', :action => 'lost_password'
map.connect '/traces', :controller => 'trace', :action => 'list'
map.connect '/traces/mine', :controller => 'trace', :action => 'users'
map.connect '/traces/user/:user_login/:id', :controller => 'trace', :action => 'user'
map.connect ':controller/:action/:id'
end