From 33bfa4dd231e4042456b3a70059c9cf57af858cf Mon Sep 17 00:00:00 2001 From: Philip Arndt Date: Wed, 1 Feb 2012 16:34:06 +1300 Subject: Added support for new code in Refinery CMS since resolve/refinerycms#1234 --- config/routes.rb | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) (limited to 'config') diff --git a/config/routes.rb b/config/routes.rb index 3521af2..62fac89 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,21 +1,19 @@ -Rails.application.routes.draw do - namespace :refinery, :path => '' do - namespace :blog do - root :to => "posts#index" - - resources :posts, :only => [:show] - - match 'feed.rss', :to => 'posts#index', :as => 'rss_feed', :defaults => {:format => "rss"} - match 'categories/:id', :to => 'categories#show', :as => 'category' - match ':id/comments', :to => 'posts#comment', :as => 'comments' - get 'archive/:year(/:month)', :to => 'posts#archive', :as => 'archive_posts' - get 'tagged/:tag_id(/:tag_name)' => 'posts#tagged', :as => 'tagged_posts' - end +Refinery::Core::Engine.routes.draw do + namespace :blog, :path => '' do + root :to => "posts#index" + resources :posts, :only => [:show] + + match 'feed.rss', :to => 'posts#index', :as => 'rss_feed', :defaults => {:format => "rss"} + match 'categories/:id', :to => 'categories#show', :as => 'category' + match ':id/comments', :to => 'posts#comment', :as => 'comments' + get 'archive/:year(/:month)', :to => 'posts#archive', :as => 'archive_posts' + get 'tagged/:tag_id(/:tag_name)' => 'posts#tagged', :as => 'tagged_posts' + end - namespace :refinery do - namespace :blog do - namespace :admin, :path =>'' do + namespace :blog, :path => '' do + namespace :admin, :path => 'refinery' do + scope :path => 'blog' do root :to => "posts#index" resources :posts do -- cgit v1.2.3