2012-04-10 13:31:21 +00:00
|
|
|
Zammad::Application.routes.draw do
|
2012-04-10 14:06:46 +00:00
|
|
|
|
|
|
|
# app init
|
2013-05-29 16:03:59 +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.
|
2013-05-29 16:03:59 +00:00
|
|
|
root :to => 'init#index', :via => :get
|
2012-05-18 13:54:48 +00:00
|
|
|
|
2013-08-21 19:16:42 +00:00
|
|
|
end
|