trabajo-afectivo/config/routes.rb

19 lines
520 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
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
# load routes from external files
dir = File.expand_path('../', __FILE__)
files = Dir.glob( "#{dir}/routes/*.rb" )
for file in files
load file
ExtraRoutes.add(self, Rails.configuration.api_path)
end
2012-04-10 13:31:21 +00:00
end