engine/config/routes.rb

101 lines
3.3 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
match '/' => 'sessions#new'
delete 'signout' => 'sessions#destroy', :as => :destroy_locomotive_session
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
# 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
2012-01-23 08:05:50 +00:00
end
Rails.application.routes.draw do
2012-01-23 08:05:50 +00:00
# API
namespace :locomotive, :module => 'locomotive' do
namespace :api do
2012-01-23 08:05:50 +00:00
resources :tokens, :only => [:create, :destroy]
resources :theme_assets
resources :content_assets
2012-01-23 08:05:50 +00:00
resources :snippets
resources :pages
resources :content_types
resources :content_entries, :path => 'content_types/:slug/entries'
resource :current_site, :controller => 'current_site'
2012-01-23 08:05:50 +00:00
end
end
# 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 '/_admin' => 'locomotive/public/pages#show_toolbar'
match ':locale/_admin' => 'locomotive/public/pages#show_toolbar', :locale => /(#{Locomotive.config.site_locales.join('|')})/
match ':locale/*path/_admin' => 'locomotive/public/pages#show_toolbar', :locale => /(#{Locomotive.config.site_locales.join('|')})/
match '*path/_admin' => 'locomotive/public/pages#show_toolbar'
match '/_edit' => 'locomotive/public/pages#edit'
match ':locale/_edit' => 'locomotive/public/pages#edit', :page_path => 'index', :locale => /(#{Locomotive.config.site_locales.join('|')})/
match ':locale/*path/_edit' => 'locomotive/public/pages#edit', :locale => /(#{Locomotive.config.site_locales.join('|')})/
match '*path/_edit' => 'locomotive/public/pages#edit'
root :to => 'locomotive/public/pages#show'
match ':locale' => 'locomotive/public/pages#show', :page_path => 'index', :locale => /(#{Locomotive.config.site_locales.join('|')})/
match ':locale/*path' => 'locomotive/public/pages#show', :locale => /(#{Locomotive.config.site_locales.join('|')})/
match '*path' => 'locomotive/public/pages#show'
end