engine/config/routes.rb

71 lines
2.0 KiB
Ruby
Raw Normal View History

Locomotive::Engine.routes.draw do
# authentication
devise_for :locomotive_account,
:class_name => 'Locomotive::Account',
:path => '',
:path_prefix => nil,
2011-11-06 11:18:34 +00:00
:failure_app => 'Locomotive::Devise::FailureApp',
:controllers => { :sessions => 'locomotive/sessions', :passwords => 'locomotive/passwords' } do
2011-11-06 11:18:34 +00:00
match '/' => 'sessions#new'
end
root :to => 'pages#index'
resources :pages do
put :sort, :on => :member
get :get_path, :on => :collection
end
resources :snippets
resources :sites
resource :current_site, :controller => 'current_site'
resources :accounts
resource :my_account, :controller => 'my_account'
resources :memberships
resources :theme_assets do
get :all, :action => 'index', :on => :collection, :defaults => { :all => true }
end
resources :content_assets
resources :content_types
resources :content_entries, :path => 'content_types/:slug/entries' do
put :sort, :on => :collection
end
resources :custom_fields, :path => 'custom/:parent/:slug/fields'
resources :cross_domain_sessions, :only => [:new, :create]
resource :import, :only => [:new, :show, :create], :controller => 'import'
resource :export, :only => [:new], :controller => 'export'
# installation guide
2011-11-06 11:18:34 +00:00
match '/installation' => 'installation#show', :defaults => { :step => 1 }, :as => :installation
match '/installation/:step' => 'installation#show', :as => :installation_step
end
Rails.application.routes.draw do
# sitemap
match '/sitemap.xml' => 'locomotive/public/sitemaps#show', :format => 'xml'
# robots.txt
match '/robots.txt' => 'locomotive/public/robots#show', :format => 'txt'
# public content entry submissions
resources :locomotive_entry_submissions, :controller => 'locomotive/public/content_entries', :path => 'entry_submissions/:slug'
2010-05-12 00:16:39 +00:00
# magic urls
match '/' => 'locomotive/public/rendering#show'
match '*path/edit' => 'locomotive/public/rendering#edit'
match '*path' => 'locomotive/public/rendering#show'
end