aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2012-01-19 13:02:11 -0800
committerPhilip Arndt <parndt@gmail.com>2012-01-19 13:02:11 -0800
commit3dbbbbfdda1dad54ac9f3e3faed040302f99051d (patch)
treef2d033d4fe7ea55d7fcd7ad1446e34c081aa82cf /config
parentb1e4fd00943a160f3eb6ce242463c0cc07a406fc (diff)
parent4eb17bb58d6701a0fd4f2ac7c30c43927c514323 (diff)
downloadrefinerycms-blog-3dbbbbfdda1dad54ac9f3e3faed040302f99051d.tar.gz
refinerycms-blog-3dbbbbfdda1dad54ac9f3e3faed040302f99051d.tar.bz2
refinerycms-blog-3dbbbbfdda1dad54ac9f3e3faed040302f99051d.zip
Merge pull request #174 from tsemana/fixes-posts-helper-namespacing
Fixes posts helper namespacing
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index aa8151e..3521af2 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -8,7 +8,7 @@ Rails.application.routes.draw do
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_blog_posts'
+ get 'archive/:year(/:month)', :to => 'posts#archive', :as => 'archive_posts'
get 'tagged/:tag_id(/:tag_name)' => 'posts#tagged', :as => 'tagged_posts'
end
end