12345678910111213141516171819202122 |
- Zammad::Application.routes.draw do
- # app init
- match '/init', :to => 'init#index', :via => :get
- match '/app', :to => 'init#index', :via => :get
- # You can have the root of your site routed with "root"
- # just remember to delete public/index.html.
- root :to => 'init#index', :via => :get
- # load routes from external files
- dir = File.expand_path('../', __FILE__)
- files = Dir.glob( "#{dir}/routes/*.rb" )
- for file in files
- if Rails.configuration.cache_classes
- require file
- else
- load file
- end
- end
- end
|