2011-02-14 18:28:51 +00:00
|
|
|
AdoptAHydrant::Application.routes.draw do
|
2011-03-05 17:22:42 +00:00
|
|
|
get "/javascripts/:action" => "javascripts#action"
|
|
|
|
post "/sign_up.:format" => "main#sign_up"
|
|
|
|
post "/sign_in.:format" => "main#sign_in"
|
|
|
|
post "/forgot_password.:format" => "main#forgot_password"
|
|
|
|
root :to => "main#index"
|
2011-02-14 18:28:51 +00:00
|
|
|
end
|