blob: 4184d101e30c9690d7ac40b7dfbfa580049f29f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Here you can override or add to the pages in the core website
ActionController::Routing::Routes.draw do |map|
# brand new controller example
map.with_options :controller => 'general' do |general|
general.mycontroller '/mycontroller', :action => 'mycontroller'
end
# Additional help page example
map.with_options :controller => 'help' do |help|
help.help_out '/help/help_out', :action => 'help_out'
end
end
|