blob: 5aeb7c27c7b70d0155614b322fb6474dd266d8b4 (
plain)
1
2
3
4
5
6
7
8
|
# Here you can override or add to the pages in the core website
Rails.application.routes.draw do
# brand new controller example
match '/mycontroller' => 'general#mycontroller'
# Additional help page example
match '/help/help_out' => 'help#help_out'
end
|