orbit-basic/config/routes.rb

98 lines
2.5 KiB
Ruby
Raw Normal View History

PrototypeR4::Application.routes.draw do
2011-07-12 08:00:57 +00:00
2010-03-08 08:04:05 +00:00
devise_for :users
2011-08-18 05:43:33 +00:00
# routes for sinatra app
match '/site/set_registered', :to => CentralServerExchangeApp
match '/site/public_key', :to => CentralServerExchangeApp
2011-08-23 07:01:22 +00:00
match '/site/update', :to => GithubApp
match '/purchase/:type', :to => CentralServerExchangeApp
2011-12-23 10:34:21 +00:00
2011-08-18 05:43:33 +00:00
# routes for admin
namespace :admin do
resources :assets
resources :app_auths
2011-12-23 10:34:21 +00:00
2011-07-19 10:31:53 +00:00
resources :designs do
collection do
get 'upload_package'
post 'upload_package'
end
2011-07-19 10:31:53 +00:00
member do
post 'edit_file' => 'designs#edit_file'
2011-07-19 10:31:53 +00:00
end
end
2011-12-23 10:34:21 +00:00
resources :infos do
get 'add_attribute_field'
end
2011-08-18 05:43:33 +00:00
resources :items
2011-05-13 01:08:42 +00:00
resources :links do
member do
get 'delete'
end
end
2011-06-01 04:00:41 +00:00
resources :pages do
member do
get 'delete'
get 'reload_themes'
2011-06-01 04:00:41 +00:00
end
end
2011-12-23 10:34:21 +00:00
resources :module_apps do
resources :app_auths do
member do
match 'remove/:type/:target_id' ,:action=> 'remove',:via => "delete",:as =>:remove
end
end
2011-12-23 10:34:21 +00:00
member do
2012-01-13 10:20:04 +00:00
match 'assign_manager' ,:action=> 'assign_manager',:via => "post",:as =>:assign_manager
match 'assign_sub_manager' ,:action=> 'assign_sub_manager',:via => "post",:as =>:assign_sub_manager
match 'remove_manager/:app_manager_id' ,:action=> 'remove_manager',:via => "delete",:as =>:remove_manager
match 'remove_sub_manager/:app_sub_manager_id' ,:action=> 'remove_sub_manager',:via => "delete",:as =>:remove_sub_manager
2011-12-23 10:34:21 +00:00
get 'reload_frontend_pages'
end
end
resources :page_parts
2011-08-18 05:43:33 +00:00
resources :purchases do
collection do
get 'install_app'
end
2011-08-18 05:43:33 +00:00
member do
get 'download'
end
end
2011-12-23 10:34:21 +00:00
resources :roles do
get 'add_sub_role'
get 'add_attribute_field'
end
resources :sites
resources :snippets
resources :translations
2011-11-17 12:02:58 +00:00
resources :users
end
2011-08-18 05:43:33 +00:00
# end admin
namespace :panel do
resources :users
end
2011-12-23 10:34:21 +00:00
match '/panel/:app_name/front_end/*page_name' => 'pages#appfront', :via => "get",:constraints => lambda { |request|
!request.query_string.include?("inner=true")
}
2011-08-18 05:43:33 +00:00
# routes for gridfs files
match "/gridfs/*path" => "gridfs#serve"
# match "/images/*path" => "gridfs#serve_images"
# match "/admin/pages/images/*path" => "gridfs#serve_images"
2011-08-18 05:43:33 +00:00
# routes for pages to generate
match '*page_name' => 'pages#show', :as => :page, :constraints => lambda{|request|
!request.path.starts_with?("/panel")
}
root :to => 'pages#index'
2009-05-07 16:53:18 +00:00
end