aboutsummaryrefslogtreecommitdiffstats
path: root/config/routes.rb
blob: fabb925bb230e7142e48d885fec44b9978e063b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
if Rails.version < '3.0.0'
  ActionController::Routing::Routes.draw do |map|
    map.blog_post '/blog', :controller => :blog_posts, :action => :index
    map.blog_post '/blog/:id', :controller => :blog_posts, :action => :show
    map.blog_category '/blog/categories/:category_id', :controller => :blog_posts, :action => :index
    map.blog_post_blog_comments '/blog/:id/comments', :controller => :blog_posts, :action => :comment

    map.namespace(:admin, :path_prefix => 'refinery') do |admin|
      admin.namespace :blog do |blog|
        blog.resources :posts
        blog.resources :categories
        blog.resources :comments, :collection => {
          :approved => :get,
          :rejected => :get
        }
        blog.resources :settings, :collection => {
          :notification_recipients => [:get, :post],
          :moderation => :get
        }
      end
    end
  end
else
  # route for rails3 here.
end