routes.rb 302 B

1234567891011
  1. Zammad::Application.routes.draw do
  2. # app init
  3. match '/init', :to => 'init#index', :via => :get
  4. match '/app', :to => 'init#index', :via => :get
  5. # You can have the root of your site routed with "root"
  6. # just remember to delete public/index.html.
  7. root :to => 'init#index', :via => :get
  8. end