trabajo-afectivo/config/routes.rb

19 lines
451 B
Ruby
Raw Normal View History

2012-04-10 13:31:21 +00:00
Zammad::Application.routes.draw do
2012-04-10 14:06:46 +00:00
# app init
match '/init', :to => 'init#index'
match '/app', :to => 'init#index'
2012-04-10 13:31:21 +00:00
# You can have the root of your site routed with "root"
# just remember to delete public/index.html.
root :to => 'init#index'
# load routes from external files
dir = File.expand_path('../', __FILE__)
files = Dir.glob( "#{dir}/routes/*.rb" )
for file in files
require file
ExtraRoutes.add(self)
end
2012-04-10 13:31:21 +00:00
end