2012-04-10 13:31:21 +00:00
|
|
|
Zammad::Application.routes.draw do
|
2012-04-10 14:06:46 +00:00
|
|
|
|
|
|
|
# app init
|
2015-04-27 13:42:53 +00:00
|
|
|
match '/init', to: 'init#index', via: :get
|
|
|
|
match '/app', to: 'init#index', via: :get
|
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.
|
2015-04-27 13:42:53 +00:00
|
|
|
root to: 'init#index', via: :get
|
2012-05-18 13:54:48 +00:00
|
|
|
|
2013-08-22 20:29:24 +00:00
|
|
|
# load routes from external files
|
|
|
|
dir = File.expand_path('../', __FILE__)
|
|
|
|
files = Dir.glob( "#{dir}/routes/*.rb" )
|
2015-05-05 10:17:52 +00:00
|
|
|
files.each { |file|
|
2014-02-19 04:31:36 +00:00
|
|
|
if Rails.configuration.cache_classes
|
|
|
|
require file
|
|
|
|
else
|
|
|
|
load file
|
|
|
|
end
|
2015-05-05 10:17:52 +00:00
|
|
|
}
|
2013-08-22 20:29:24 +00:00
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|