engine/config/routes.rb

59 lines
1.4 KiB
Ruby
Raw Normal View History

2010-06-03 15:32:40 +00:00
# Locomotive::Application.routes.draw do |map|
Rails.application.routes.draw do |map|
constraints(Locomotive::Routing::DefaultConstraint) do
root :to => 'home#show'
2010-04-13 14:26:40 +00:00
end
# admin authentication
devise_for :admin, :class_name => 'Account', :controllers => { :sessions => 'admin/sessions', :passwords => 'admin/passwords' }
2010-04-13 14:26:40 +00:00
# admin interface for each website
namespace 'admin' do
2010-04-24 00:32:36 +00:00
root :to => 'pages#index'
resources :pages do
put :sort, :on => :member
get :get_path, :on => :collection
end
resources :layouts do
resources :page_parts, :only => :index
end
resources :snippets
2010-04-24 00:32:36 +00:00
resources :site
resource :current_site
resources :accounts
resource :my_account
2010-05-11 21:38:52 +00:00
resources :memberships
resources :theme_assets
2010-05-12 00:16:39 +00:00
resources :asset_collections
resources :assets, :path => 'asset_collections/:collection_id/assets'
resources :content_types
resources :contents, :path => 'content_types/:slug/contents' do
put :sort, :on => :collection
end
resources :api_contents, :path => 'api/:slug/contents', :controller => 'api_contents', :only => [:create]
resources :custom_fields, :path => 'custom/:parent/:slug/fields'
end
# sitemap
match '/sitemap.xml' => 'admin/sitemaps#show', :format => 'xml'
2010-05-12 00:16:39 +00:00
# magic urls
2010-06-03 15:32:40 +00:00
match '/' => 'admin/rendering#show'
match '*path' => 'admin/rendering#show'
2010-03-29 22:01:47 +00:00
end