17 lines
851 B
Ruby
17 lines
851 B
Ruby
ActionController::Routing::Routes.draw do |map|
|
|
map.resource 'links', :only => [:show]
|
|
map.resource 'buttons', :only => [:show, :create]
|
|
map.with_options :controller => "webrat" do |webrat|
|
|
webrat.submit "/submit", :action => "submit"
|
|
webrat.internal_redirect "/internal_redirect", :action => "internal_redirect"
|
|
webrat.external_redirect "/external_redirect", :action => "external_redirect"
|
|
webrat.infinite_redirect "/infinite_redirect", :action => "infinite_redirect"
|
|
|
|
webrat.before_redirect_form "/before_redirect_form", :action => "before_redirect_form"
|
|
webrat.redirect_to_show_params "/redirect_to_show_params", :action => "redirect_to_show_params"
|
|
webrat.show_params "/show_params", :action => "show_params"
|
|
|
|
webrat.root :action => "form"
|
|
end
|
|
end
|